Class TimerEvent

  • All Implemented Interfaces:
    Identifiable, java.io.Serializable

    public class TimerEvent
    extends Element
    The class that represents a timer event that is in a process flow.
    See Also:
    Serialized Form
    • Constructor Detail

      • TimerEvent

        public TimerEvent​(java.lang.String typeId,
                          java.lang.String id,
                          java.lang.String elementId,
                          java.lang.String name,
                          java.lang.String description,
                          Element.ElementType type,
                          ProcessFlowDescriptor.FlowStatus flowStatus,
                          java.lang.String processFlowId,
                          java.util.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 Detail

      • getDueDate

        public java.util.Date getDueDate()
        Gets the due date of the event.
        Returns:
        The due date.
      • setDueDate

        public void setDueDate​(java.util.Date dueDate)
        Sets the due date of the event.
        Parameters:
        dueDate - The due date of the event.