Package com.appiancorp.suiteapi.process
Class TaskProperties
java.lang.Object
com.appiancorp.suiteapi.common.Identity
com.appiancorp.suiteapi.process.TaskProperties
- All Implemented Interfaces:
LocalId
,Serializable
- Direct Known Subclasses:
TaskSummary
Holds the properties of a task.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the description of the task.Returns the display name of the task (ie the name of the task that should be displayed to the user on the UI).Returns the priority of the task.getUuid()
Returns the UUID of the object.void
setDescription
(String description_) SeegetDescription()
.void
setDisplayName
(String displayName_) SeegetDisplayName()
.void
setPriority
(Priority priority_) SeegetPriority()
.void
SeegetUuid()
.toString()
Returns the task properties as a string of the following format: " id=%getId()% name=%getName()% desc=%getDescription()% displayName=%geDisplayName%" (the methods between the % signs are the getters that are called to get the properties before returning them in the string).
-
Constructor Details
-
TaskProperties
public TaskProperties()
-
-
Method Details
-
getDescription
Return the description of the task. -
setDescription
SeegetDescription()
. -
getDisplayName
Returns the display name of the task (ie the name of the task that should be displayed to the user on the UI). -
setDisplayName
SeegetDisplayName()
. -
getPriority
Returns the priority of the task. -
setPriority
SeegetPriority()
. -
toString
Returns the task properties as a string of the following format: " id=%getId()% name=%getName()% desc=%getDescription()% displayName=%geDisplayName%" (the methods between the % signs are the getters that are called to get the properties before returning them in the string). -
getUuid
@ConvertWith(com.appiancorp.kougar.mapper.parameters.UuidParameterConverter.class) public String getUuid()Description copied from class:Identity
Returns the UUID of the object. -
setUuid
SeegetUuid()
.
-