org.odpi.openmetadata.commonservices.ffdc.rest.StringResponse Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.commonservices.ffdc.rest;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
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;
/**
* GUIDResponse is the response structure used on the OMAS REST API calls that return a
* unique identifier (guid) object as a response.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class StringResponse extends FFDCResponseBase
{
private static final long serialVersionUID = 1L;
private String resultString = null;
/**
* Default constructor
*/
public StringResponse()
{
super();
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public StringResponse(StringResponse template)
{
super(template);
if (template != null)
{
this.resultString = template.getResultString();
}
}
/**
* Return the guid result.
*
* @return unique identifier
*/
public String getResultString()
{
return resultString;
}
/**
* Set up the resultString result.
*
* @param resultString string value
*/
public void setResultString(String resultString)
{
this.resultString = resultString;
}
/**
* JSON-style toString
*
* @return return string containing the property names and values
*/
@Override
public String toString()
{
return "StringResponse{" +
"resultString='" + resultString + '\'' +
", 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 instanceof StringResponse))
{
return false;
}
if (!super.equals(objectToCompare))
{
return false;
}
StringResponse that = (StringResponse) objectToCompare;
return Objects.equals(resultString, that.resultString);
}
/**
* Return hash code for this object
*
* @return int hash code
*/
@Override
public int hashCode()
{
return Objects.hash(resultString);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy