Class BooleanResponse
- java.lang.Object
-
- org.odpi.openmetadata.commonservices.ffdc.rest.FFDCResponseBase
-
- org.odpi.openmetadata.commonservices.ffdc.rest.BooleanResponse
-
- All Implemented Interfaces:
Serializable,FFDCResponse
public class BooleanResponse extends FFDCResponseBase
BooleanResponse is the response structure used on OMAG REST API calls that return a boolean response.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BooleanResponse()Default constructorBooleanResponse(BooleanResponse template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.booleangetFlag()Return the boolean result.inthashCode()Create a hash code for this element type.voidsetFlag(boolean flag)Set up the boolean result.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.commonservices.ffdc.rest.FFDCResponseBase
getActionDescription, getExceptionCausedBy, getExceptionClassName, getExceptionErrorMessage, getExceptionErrorMessageId, getExceptionErrorMessageParameters, getExceptionProperties, getExceptionSystemAction, getExceptionUserAction, getRelatedHTTPCode, setActionDescription, setExceptionCausedBy, setExceptionClassName, setExceptionErrorMessage, setExceptionErrorMessageId, setExceptionErrorMessageParameters, setExceptionProperties, setExceptionSystemAction, setExceptionUserAction, setRelatedHTTPCode
-
-
-
-
Constructor Detail
-
BooleanResponse
public BooleanResponse()
Default constructor
-
BooleanResponse
public BooleanResponse(BooleanResponse template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getFlag
public boolean getFlag()
Return the boolean result.- Returns:
- boolean
-
setFlag
public void setFlag(boolean flag)
Set up the boolean result.- Parameters:
flag- boolean
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classFFDCResponseBase- Returns:
- print out of variables in a JSON-style
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.- Overrides:
equalsin classFFDCResponseBase- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Create a hash code for this element type.- Overrides:
hashCodein classFFDCResponseBase- Returns:
- int hash code
-
-