Class WorkflowProcess

    • Constructor Detail

      • WorkflowProcess

        public WorkflowProcess()
    • Method Detail

      • getId

        public Long getId()
        Specified by:
        getId in interface de.xima.cmn.dao.interfaces.IEntity<Long>
      • getTasks

        public List<WorkflowTask> getTasks()
        Returns:
        A list of tasks that indicate which actions are executed when certain events occur during the life cycle of a form record.
      • getUUID

        public String getUUID()
        Description copied from interface: IUUIDEntity
        Gets the UUID (universal unique identifier) that uniquely identifies this type of entity. Whether the UUID must be globally unique or only with within a context depends on the type of entity. Common contexts are for example client scopes or project scope.
        Specified by:
        getUUID in interface IUUIDEntity
        Returns:
        The UUID of the entity.
      • getUUIDObject

        public UUID getUUIDObject()
        Description copied from interface: IUUIDEntity
        Gets the UUID (universal unique identifier) that uniquely identifies this type of entity. Whether the UUID must be globally unique or only with within a context depends on the type of entity. Common contexts are for example client scopes or project scope.
        Specified by:
        getUUIDObject in interface IUUIDEntity
        Returns:
        A unique identifier of this workflow task. This ID must be unique at least among all other processes that belong to the same WorkflowVersion.
      • setTasks

        public void setTasks​(List<WorkflowTask> tasks)
        Parameters:
        tasks - A list of tasks that indicate which actions are executed when certain events occur during the life cycle of a form record.
      • setUUID

        public void setUUID​(String uuid)
        Description copied from interface: IUUIDEntity
        Sets the UUID (universal unique identifier) that uniquely identifies this type of entity. Whether the UUID must be globally unique or only with within a context depends on the type of entity. Common contexts are for example client scopes or project scope.
        Specified by:
        setUUID in interface IUUIDEntity
        Parameters:
        uuid - The UUID of the entity.
      • setUUIDObject

        public void setUUIDObject​(UUID uuid)
        Parameters:
        uuid - A unique identifier of this workflow task. This ID must be unique at least among all other tasks that belong to the same WorkflowProcess.
      • setVersion

        public void setVersion​(WorkflowVersion version)
        Parameters:
        version - The version to which this workflow process belongs.
      • cloneBasics

        public WorkflowProcess cloneBasics()
        Returns:
        A new process instance with all fields that do not reference other entities copied from this instance.