Class ProcessContainmentTypeRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.rest.AssetManagerIdentifiersRequestBody
-
- org.odpi.openmetadata.accessservices.assetmanager.rest.ProcessContainmentTypeRequestBody
-
- All Implemented Interfaces:
Serializable
public class ProcessContainmentTypeRequestBody extends AssetManagerIdentifiersRequestBody
ProcessContainmentTypeRequestBody is the request body structure used on OMAG REST API calls that passes a ProcessContainmentType enum.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessContainmentTypeRequestBody()Default constructorProcessContainmentTypeRequestBody(ProcessContainmentTypeRequestBody 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.ProcessContainmentTypegetProcessContainmentType()Return the relationship between the parent and child process.inthashCode()Create a hash code for this element type.voidsetProcessContainmentType(ProcessContainmentType processContainmentType)Set up the relationship between the parent and child process.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.rest.AssetManagerIdentifiersRequestBody
getAssetManagerGUID, getAssetManagerName, setAssetManagerGUID, setAssetManagerName
-
-
-
-
Constructor Detail
-
ProcessContainmentTypeRequestBody
public ProcessContainmentTypeRequestBody()
Default constructor
-
ProcessContainmentTypeRequestBody
public ProcessContainmentTypeRequestBody(ProcessContainmentTypeRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getProcessContainmentType
public ProcessContainmentType getProcessContainmentType()
Return the relationship between the parent and child process.- Returns:
- process containment type enum
-
setProcessContainmentType
public void setProcessContainmentType(ProcessContainmentType processContainmentType)
Set up the relationship between the parent and child process.- Parameters:
processContainmentType- process containment type enum
-
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
-
-