Class NewActionTarget
- java.lang.Object
-
- org.odpi.openmetadata.frameworks.governanceaction.properties.NewActionTarget
-
- All Implemented Interfaces:
Serializable
public class NewActionTarget extends Object implements Serializable
NewActionTarget identifies an element that a governance action service should process.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NewActionTarget()Typical ConstructorNewActionTarget(NewActionTarget template)Copy/clone Constructor the resulting object will return true if tested with this.equals(template) as long as the template object is not null;
-
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.StringgetActionTargetGUID()Return the unique identifier for this action target.StringgetActionTargetName()Return the name assigned to this action target.inthashCode()Create a hash code for this element type.voidsetActionTargetGUID(String actionTargetGUID)Set up the unique identifier for this action target.voidsetActionTargetName(String actionTargetName)Set up the name assigned to this action target.StringtoString()Standard toString method.
-
-
-
Constructor Detail
-
NewActionTarget
public NewActionTarget()
Typical Constructor
-
NewActionTarget
public NewActionTarget(NewActionTarget template)
Copy/clone Constructor the resulting object will return true if tested with this.equals(template) as long as the template object is not null;- Parameters:
template- object being copied
-
-
Method Detail
-
getActionTargetName
public String getActionTargetName()
Return the name assigned to this action target. This name helps to guide the governance service in its processing of this action target.- Returns:
- string name
-
setActionTargetName
public void setActionTargetName(String actionTargetName)
Set up the name assigned to this action target. This name helps to guide the governance service in its processing of this action target.- Parameters:
actionTargetName- string name
-
getActionTargetGUID
public String getActionTargetGUID()
Return the unique identifier for this action target.- Returns:
- string identifier
-
setActionTargetGUID
public void setActionTargetGUID(String actionTargetGUID)
Set up the unique identifier for this action target.- Parameters:
actionTargetGUID- string identifier
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-