Class ControlFlowProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.RelationshipProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.ControlFlowProperties
-
- All Implemented Interfaces:
Serializable
public class ControlFlowProperties extends RelationshipProperties
ControlFlowProperties describe the properties for a control flow relationship.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ControlFlowProperties()Default constructorControlFlowProperties(ControlFlowProperties 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.StringgetDescription()Return the description of the relationship.StringgetGuard()Return the guard of the relationship.StringgetQualifiedName()Returns the stored qualified name property for the relationship.inthashCode()Return has code based on properties.voidsetDescription(String description)Set up the the description of the relationship.voidsetGuard(String guard)Set up the guard of the relationship.voidsetQualifiedName(String qualifiedName)Set up the fully qualified name.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.RelationshipProperties
getEffectiveFrom, getEffectiveTo, setEffectiveFrom, setEffectiveTo
-
-
-
-
Constructor Detail
-
ControlFlowProperties
public ControlFlowProperties()
Default constructor
-
ControlFlowProperties
public ControlFlowProperties(ControlFlowProperties template)
Copy/clone constructor. Retrieves values from the supplied template- Parameters:
template- element to copy
-
-
Method Detail
-
setQualifiedName
public void setQualifiedName(String qualifiedName)
Set up the fully qualified name.- Parameters:
qualifiedName- String name
-
getQualifiedName
public String getQualifiedName()
Returns the stored qualified name property for the relationship. If no qualified name is available then the empty string is returned.- Returns:
- qualifiedName
-
getDescription
public String getDescription()
Return the description of the relationship.- Returns:
- string text
-
setDescription
public void setDescription(String description)
Set up the the description of the relationship.- Parameters:
description- string text
-
getGuard
public String getGuard()
Return the guard of the relationship.- Returns:
- string guard
-
setGuard
public void setGuard(String guard)
Set up the guard of the relationship.- Parameters:
guard- string name
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classRelationshipProperties- 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 classRelationshipProperties- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return has code based on properties.- Overrides:
hashCodein classRelationshipProperties- Returns:
- int
-
-