Class ActionTargetStatusRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.governanceengine.rest.ActionTargetStatusRequestBody
-
- All Implemented Interfaces:
Serializable
public class ActionTargetStatusRequestBody extends Object implements Serializable
ActionTargetStatusRequestBody provides a structure for passing the properties that sit in the ActionTarget relationship.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionTargetStatusRequestBody()Default constructorActionTargetStatusRequestBody(ActionTargetStatusRequestBody template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Equals method that returns true if containing properties are the same.StringgetActionTargetGUID()Return the unique identifier of the action target metadata element.DategetCompletionDate()Return the date/time that work on this actionTarget completed.DategetStartDate()Return the date/time that work on this action target started.GovernanceActionStatusgetStatus()Return the status of the work on this actionTarget.inthashCode()Return hash code for this objectvoidsetActionTargetGUID(String actionTargetGUID)Set up the unique identifier of the action target metadata element.voidsetCompletionDate(Date completionDate)Set up the date/time that work on this actionTarget completed.voidsetStartDate(Date startDate)Set up the date/time that work on this action target started.voidsetStatus(GovernanceActionStatus status)Set up the status of the work on this actionTarget.StringtoString()JSON-style toString.
-
-
-
Constructor Detail
-
ActionTargetStatusRequestBody
public ActionTargetStatusRequestBody()
Default constructor
-
ActionTargetStatusRequestBody
public ActionTargetStatusRequestBody(ActionTargetStatusRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getActionTargetGUID
public String getActionTargetGUID()
Return the unique identifier of the action target metadata element.- Returns:
- string guid
-
setActionTargetGUID
public void setActionTargetGUID(String actionTargetGUID)
Set up the unique identifier of the action target metadata element.- Parameters:
actionTargetGUID- string guid
-
getStatus
public GovernanceActionStatus getStatus()
Return the status of the work on this actionTarget.- Returns:
- status enum
-
setStatus
public void setStatus(GovernanceActionStatus status)
Set up the status of the work on this actionTarget.- Parameters:
status- status enum
-
getStartDate
public Date getStartDate()
Return the date/time that work on this action target started.- Returns:
- date object
-
setStartDate
public void setStartDate(Date startDate)
Set up the date/time that work on this action target started.- Parameters:
startDate- date object
-
getCompletionDate
public Date getCompletionDate()
Return the date/time that work on this actionTarget completed.- Returns:
- date object
-
setCompletionDate
public void setCompletionDate(Date completionDate)
Set up the date/time that work on this actionTarget completed.- Parameters:
completionDate- date object
-
toString
public String toString()
JSON-style toString.
-
equals
public boolean equals(Object objectToCompare)
Equals method that returns true if containing properties are the same.
-
-