org.odpi.openmetadata.accessservices.assetowner.rest.PagedResponse Maven / Gradle / Ivy
/* 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 java.util.Objects;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* PagedResponse is used for responses that can contain paged responses
*/
@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 = AssetElementsResponse.class, name = "AssetElementsResponse"),
@JsonSubTypes.Type(value = AnnotationListResponse.class, name = "AnnotationListResponse")
})
public class PagedResponse extends FFDCResponseBase
{
private static final long serialVersionUID = 1L;
private int startingFromElement = 0;
/**
* Default constructor
*/
public PagedResponse()
{
super();
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public PagedResponse(PagedResponse template)
{
super(template);
if (template != null)
{
this.startingFromElement = template.getStartingFromElement();
}
}
/**
* Return the starting element number from the server side list that this response contains.
*
* @return int
*/
public int getStartingFromElement()
{
return startingFromElement;
}
/**
* Set up the starting element number from the server side list that this response contains.
*
* @param startingFromElement int
*/
public void setStartingFromElement(int startingFromElement)
{
this.startingFromElement = startingFromElement;
}
/**
* JSON-style toString
*
* @return return string containing the property names and values
*/
@Override
public String toString()
{
return "PagedResponse{" +
"startingFromElement=" + startingFromElement +
", exceptionClassName='" + getExceptionClassName() + '\'' +
", exceptionCausedBy='" + getExceptionCausedBy() + '\'' +
", actionDescription='" + getActionDescription() + '\'' +
", relatedHTTPCode=" + getRelatedHTTPCode() +
", exceptionErrorMessage='" + getExceptionErrorMessage() + '\'' +
", exceptionErrorMessageId='" + getExceptionErrorMessageId() + '\'' +
", exceptionErrorMessageParameters=" + Arrays.toString(getExceptionErrorMessageParameters()) +
", exceptionSystemAction='" + getExceptionSystemAction() + '\'' +
", exceptionUserAction='" + getExceptionUserAction() + '\'' +
", exceptionProperties=" + getExceptionProperties() +
'}';
}
/**
* Return comparison result based on the content of the properties.
*
* @param objectToCompare test object
* @return result of comparison
*/
@Override
public boolean equals(Object objectToCompare)
{
if (this == objectToCompare)
{
return true;
}
if (objectToCompare == null || getClass() != objectToCompare.getClass())
{
return false;
}
if (!super.equals(objectToCompare))
{
return false;
}
PagedResponse that = (PagedResponse) objectToCompare;
return getStartingFromElement() == that.getStartingFromElement();
}
/**
* Return hash code for this object
*
* @return int hash code
*/
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), getStartingFromElement());
}
}