Class ProcessCallElement
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.metadataelements.ProcessCallElement
-
- All Implemented Interfaces:
Serializable
public class ProcessCallElement extends Object implements Serializable
ProcessCallElement contains the properties and header for a process call relationship retrieved from the metadata repository.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessCallElement()Default constructorProcessCallElement(ProcessCallElement template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.ElementHeadergetCalled()Return the element header associated with end 2 of the relationship.ElementHeadergetCaller()Return the element header associated with end 1 of the relationship.ElementHeadergetProcessCallHeader()Return the element header associated with the relationship.ProcessCallPropertiesgetProcessCallProperties()Return details of the relationshipinthashCode()Return hash code for this objectvoidsetCalled(ElementHeader called)Set up the element header associated with end 2 of the relationship.voidsetCaller(ElementHeader caller)Set up the element header associated with end 1 of the relationship.voidsetProcessCallHeader(ElementHeader processCallHeader)Set up the element header associated with the relationship.voidsetProcessCallProperties(ProcessCallProperties processCallProperties)Set up relationship propertiesStringtoString()JSON-style toString
-
-
-
Constructor Detail
-
ProcessCallElement
public ProcessCallElement()
Default constructor
-
ProcessCallElement
public ProcessCallElement(ProcessCallElement template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getProcessCallHeader
public ElementHeader getProcessCallHeader()
Return the element header associated with the relationship.- Returns:
- element header object
-
setProcessCallHeader
public void setProcessCallHeader(ElementHeader processCallHeader)
Set up the element header associated with the relationship.- Parameters:
processCallHeader- element header object
-
getProcessCallProperties
public ProcessCallProperties getProcessCallProperties()
Return details of the relationship- Returns:
- relationship properties
-
setProcessCallProperties
public void setProcessCallProperties(ProcessCallProperties processCallProperties)
Set up relationship properties- Parameters:
processCallProperties- relationship properties
-
getCaller
public ElementHeader getCaller()
Return the element header associated with end 1 of the relationship.- Returns:
- element header object
-
setCaller
public void setCaller(ElementHeader caller)
Set up the element header associated with end 1 of the relationship.- Parameters:
caller- element header object
-
getCalled
public ElementHeader getCalled()
Return the element header associated with end 2 of the relationship.- Returns:
- element header object
-
setCalled
public void setCalled(ElementHeader called)
Set up the element header associated with end 2 of the relationship.- Parameters:
called- element header object
-
toString
public String toString()
JSON-style toString
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.
-
-