org.odpi.openmetadata.accessservices.assetowner.rest.AssetOwnerOMASAPIResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asset-owner-api Show documentation
Show all versions of asset-owner-api Show documentation
API classes for the Asset Owner Open Metadata Access Service (OMAS).
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.assetowner.rest;
import com.fasterxml.jackson.annotation.*;
import org.odpi.openmetadata.commonservices.ffdc.rest.FFDCResponseBase;
import java.util.Arrays;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* AssetOwnerOMASAPIResponse provides a common header for Asset Owner OMAS managed rest to its REST API.
* It manages information about exceptions. If no exception has been raised exceptionClassName is null.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "class")
@JsonSubTypes({
@JsonSubTypes.Type(value = FileSystemResponse.class, name = "FileSystemResponse"),
@JsonSubTypes.Type(value = FolderResponse.class, name = "FolderResponse")
})
public abstract class AssetOwnerOMASAPIResponse extends FFDCResponseBase
{
private static final long serialVersionUID = 1L;
/**
* Default constructor
*/
public AssetOwnerOMASAPIResponse()
{
super();
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public AssetOwnerOMASAPIResponse(AssetOwnerOMASAPIResponse template)
{
super(template);
}
/**
* JSON-like toString
*
* @return string containing the property names and values
*/
@Override
public String toString()
{
return "AssetOwnerOMASAPIResponse{" +
"exceptionClassName='" + getExceptionClassName() + '\'' +
", exceptionCausedBy='" + getExceptionCausedBy() + '\'' +
", actionDescription='" + getActionDescription() + '\'' +
", relatedHTTPCode=" + getRelatedHTTPCode() +
", exceptionErrorMessage='" + getExceptionErrorMessage() + '\'' +
", exceptionErrorMessageId='" + getExceptionErrorMessageId() + '\'' +
", exceptionErrorMessageParameters=" + Arrays.toString(getExceptionErrorMessageParameters()) +
", exceptionSystemAction='" + getExceptionSystemAction() + '\'' +
", exceptionUserAction='" + getExceptionUserAction() + '\'' +
", exceptionProperties=" + getExceptionProperties() +
'}';
}
}