Class NameRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.rest.AssetManagerIdentifiersRequestBody
-
- org.odpi.openmetadata.accessservices.assetmanager.rest.NameRequestBody
-
- All Implemented Interfaces:
Serializable
public class NameRequestBody extends AssetManagerIdentifiersRequestBody
NameRequestBody is the request body structure used on OMAG REST API calls that passes a name that is used to retrieve an element by name.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NameRequestBody()Default constructorNameRequestBody(NameRequestBody 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.StringgetName()Return the name for the query request.StringgetNameParameterName()Return the parameter name.inthashCode()Create a hash code for this element type.voidsetName(String name)Set up the name for the query request.voidsetNameParameterName(String nameParameterName)Set up the parameter name.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.rest.AssetManagerIdentifiersRequestBody
getAssetManagerGUID, getAssetManagerName, setAssetManagerGUID, setAssetManagerName
-
-
-
-
Constructor Detail
-
NameRequestBody
public NameRequestBody()
Default constructor
-
NameRequestBody
public NameRequestBody(NameRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getName
public String getName()
Return the name for the query request.- Returns:
- string name
-
setName
public void setName(String name)
Set up the name for the query request.- Parameters:
name- string
-
getNameParameterName
public String getNameParameterName()
Return the parameter name.- Returns:
- string name
-
setNameParameterName
public void setNameParameterName(String nameParameterName)
Set up the parameter name.- Parameters:
nameParameterName- string
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classAssetManagerIdentifiersRequestBody- 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 classAssetManagerIdentifiersRequestBody- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Create a hash code for this element type.- Overrides:
hashCodein classAssetManagerIdentifiersRequestBody- Returns:
- int hash code
-
-