Class ExecutionPointProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.governanceprogram.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.governanceprogram.properties.ExecutionPointProperties
-
- All Implemented Interfaces:
Serializable
public class ExecutionPointProperties extends ReferenceableProperties
ExecutionPointProperties describes the behavior of a component that automates a governance action. There are three types:- ControlPointDefinition - describes the choices for a decision maker on how to react to a detected situation.
- VerificationPointDefinition - describes a test to detect that a desired state or situation is true or not.
- EnforcementPointDefinition - description of an action that is taken to enforce governance.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionPointProperties()Default constructorExecutionPointProperties(ExecutionPointProperties 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.StringgetDescription()Return the description for the governance domainStringgetDisplayName()Return the short name for the governance domain.inthashCode()Return hash code for this objectvoidsetDescription(String description)Set up the description of the governance domainvoidsetDisplayName(String displayName)Set up the short name for the governance domain.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.governanceprogram.properties.ReferenceableProperties
getAdditionalProperties, getEffectiveFrom, getEffectiveTo, getExtendedProperties, getQualifiedName, getTypeName, setAdditionalProperties, setEffectiveFrom, setEffectiveTo, setExtendedProperties, setQualifiedName, setTypeName
-
-
-
-
Constructor Detail
-
ExecutionPointProperties
public ExecutionPointProperties()
Default constructor
-
ExecutionPointProperties
public ExecutionPointProperties(ExecutionPointProperties template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getDisplayName
public String getDisplayName()
Return the short name for the governance domain.- Returns:
- string name
-
setDisplayName
public void setDisplayName(String displayName)
Set up the short name for the governance domain.- Parameters:
displayName- string name
-
getDescription
public String getDescription()
Return the description for the governance domain- Returns:
- text
-
setDescription
public void setDescription(String description)
Set up the description of the governance domain- Parameters:
description- text
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classReferenceableProperties- Returns:
- return string containing the property names and values
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equalsin classReferenceableProperties- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classReferenceableProperties- Returns:
- int hash code
-
-