Package com.sas.lsaf.workflow.element
Class TimerEvent
java.lang.Object
com.sas.lsaf.core.AbstractIdentifiable
com.sas.lsaf.workflow.element.Element
com.sas.lsaf.workflow.element.TimerEvent
- All Implemented Interfaces:
Identifiable,Serializable
The class that represents a timer event that is in a process flow.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.sas.lsaf.workflow.element.Element
Element.ElementType -
Constructor Summary
ConstructorsConstructorDescriptionTimerEvent(String typeId, String id, String elementId, String name, String description, Element.ElementType type, ProcessFlowDescriptor.FlowStatus flowStatus, String processFlowId, Date created) It is not intended or recommended that the consumer of this API construct these objects. -
Method Summary
Modifier and TypeMethodDescriptionGets the due date of the event.voidsetDueDate(Date dueDate) Sets the due date of the event.Methods inherited from class com.sas.lsaf.workflow.element.Element
equals, getCreated, getDescription, getElementId, getFlowStatus, getName, getProcessFlowId, getType, hashCode, setDescription, setName, toStringMethods inherited from class com.sas.lsaf.core.AbstractIdentifiable
getId, getTypeId
-
Constructor Details
-
TimerEvent
public TimerEvent(String typeId, String id, String elementId, String name, String description, Element.ElementType type, ProcessFlowDescriptor.FlowStatus flowStatus, String processFlowId, Date created) It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the events returned by the API.- Parameters:
typeId- The object type identifier of the event.id- The unique identifier of the event.elementId- The identifier of the event as it appears in the process flow definition.name- The name of the event.description- The description of the event.type- The type of the event.flowStatus- The status of the process flow that contains the event.processFlowId- The identifier of the process flow that contains the event.created- The date on which the event was created.
-
-
Method Details
-
getDueDate
Gets the due date of the event.- Returns:
- The due date.
-
setDueDate
Sets the due date of the event.- Parameters:
dueDate- The due date of the event.
-