Class WorkflowNode


  • @AlfrescoPublicApi
    public class WorkflowNode
    extends java.lang.Object
    Workflow Node Data Object Represents a Node within the Workflow Definition.
    Author:
    davidc
    • Field Detail

      • name

        @Deprecated
        public java.lang.String name
        Deprecated.
        Workflow Node Name
      • title

        @Deprecated
        public java.lang.String title
        Deprecated.
        Workflow Node Title (Localised)
      • description

        @Deprecated
        public java.lang.String description
        Deprecated.
        Workflow Node Description (Localised)
      • type

        @Deprecated
        public java.lang.String type
        Deprecated.
        Type of the Workflow Node (typically this is BPM engine specific - informational only
      • isTaskNode

        @Deprecated
        public boolean isTaskNode
        Deprecated.
        Does this Workflow Node represent human interaction?
      • transitions

        @Deprecated
        public WorkflowTransition[] transitions
        Deprecated.
        The transitions leaving this node (or null, if none)
    • Constructor Detail

      • WorkflowNode

        public WorkflowNode​(java.lang.String name,
                            java.lang.String title,
                            java.lang.String description,
                            java.lang.String type,
                            boolean isTaskNode,
                            WorkflowTransition... transitions)
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns:
        the name
      • getTitle

        public java.lang.String getTitle()
        Returns:
        the title
      • getDescription

        public java.lang.String getDescription()
        Returns:
        the description
      • getType

        public java.lang.String getType()
        Returns:
        the type
      • isTaskNode

        public boolean isTaskNode()
        Returns:
        the isTaskNode
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object