Class CompletedElement

    • Constructor Detail

      • CompletedElement

        public CompletedElement​(java.lang.String typeId,
                                java.lang.String id,
                                java.lang.String elementId,
                                java.lang.String processFlowId,
                                java.lang.String name,
                                java.lang.String description,
                                Element.ElementType type,
                                java.util.Date created,
                                java.lang.String completedBy,
                                java.util.Date completed,
                                CompletedElement.TaskCompletedState completedState)
        It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the completed elements returned by the API.
        Parameters:
        typeId - The object type identifier of the element.
        id - The unique identifier of the element.
        elementId - The identifier of the element as it appears in the process flow definition.
        processFlowId - The identifier of the process flow that contains the element.
        name - The name of the element.
        description - The description of the element.
        type - The type of the element.
        created - The date on which the element was created.
        completedBy - The user who completed the element.
        completed - The date on which the element was completed.
        completedState - The completed state of the element
    • Method Detail

      • getName

        public java.lang.String getName()
        Gets the name of the completed element.
        Returns:
        The name.
      • getElementId

        public java.lang.String getElementId()
        Gets the identifier of the completed element as it appears in the process flow definition.
        Returns:
        The identifier of the completed element.
      • getProcessFlowId

        public java.lang.String getProcessFlowId()
        Gets the identifier of the process flow that contains the element.
        Returns:
        Returns the process flow identifier.
      • getDescription

        public java.lang.String getDescription()
        Gets the description of the completed element.
        Returns:
        The description.
      • getCreated

        public java.util.Date getCreated()
        Gets the date on which the completed element was created.
        Returns:
        The created date.
      • getCompleted

        public java.util.Date getCompleted()
        Gets the date on which the completed element was completed.
        Returns:
        The completed date.
      • getCompletedBy

        public java.lang.String getCompletedBy()
        Gets the user who completed this element.
        Returns:
        The user.
      • getType

        public Element.ElementType getType()
        Gets the type of the completed element.
        Returns:
        The type.