Interface Node

All Superinterfaces:
Contextable, KogitoNode, org.kie.api.definition.process.Node, Serializable, org.kie.api.definition.process.WorkflowElement
All Known Implementing Classes:
ActionNode, AsyncEventNode, BoundaryEventNode, CatchLinkNode, CompositeContextNode, CompositeNode, CompositeNode.CompositeNodeEnd, CompositeNode.CompositeNodeStart, DynamicNode, EndNode, EventNode, EventSubProcessNode, ExtendedNodeImpl, FaultNode, ForEachNode, ForEachNode.ForEachJoinNode, ForEachNode.ForEachSplitNode, HumanTaskNode, Join, MilestoneNode, NodeImpl, RuleSetNode, Split, StartNode, StateBasedNode, StateNode, SubProcessNode, ThrowLinkNode, TimerNode, WorkItemNode

public interface Node extends KogitoNode, Contextable, Serializable
Represents a node in a RuleFlow.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addIncomingConnection(String type, org.kie.api.definition.process.Connection connection)
     
    void
    addOutgoingConnection(String type, org.kie.api.definition.process.Connection connection)
     
    void
    removeIncomingConnection(String type, org.kie.api.definition.process.Connection connection)
     
    void
    removeOutgoingConnection(String type, org.kie.api.definition.process.Connection connection)
     
    void
    setId(org.kie.api.definition.process.WorkflowElementIdentifier id)
    Method for setting the id of the node
    void
    setMetaData(String name, Object value)
     
    void
    Method for setting the name of the node
    void
    setParentContainer(org.kie.api.definition.process.NodeContainer nodeContainer)
     

    Methods inherited from interface org.jbpm.process.core.Contextable

    getContext, setContext

    Methods inherited from interface org.kie.kogito.internal.process.runtime.KogitoNode

    getParentContainer

    Methods inherited from interface org.kie.api.definition.process.Node

    getIncomingConnections, getIncomingConnections, getMetaData, getName, getNodeContainer, getNodeType, getOutgoingConnections, getOutgoingConnections

    Methods inherited from interface org.kie.api.definition.process.WorkflowElement

    getId, getUniqueId
  • Field Details

  • Method Details

    • setId

      void setId(org.kie.api.definition.process.WorkflowElementIdentifier id)
      Method for setting the id of the node
      Parameters:
      id - the id of the node
    • setName

      void setName(String name)
      Method for setting the name of the node
      Parameters:
      name - the name of the node
    • addIncomingConnection

      void addIncomingConnection(String type, org.kie.api.definition.process.Connection connection)
    • addOutgoingConnection

      void addOutgoingConnection(String type, org.kie.api.definition.process.Connection connection)
    • removeIncomingConnection

      void removeIncomingConnection(String type, org.kie.api.definition.process.Connection connection)
    • removeOutgoingConnection

      void removeOutgoingConnection(String type, org.kie.api.definition.process.Connection connection)
    • setParentContainer

      void setParentContainer(org.kie.api.definition.process.NodeContainer nodeContainer)
    • setMetaData

      void setMetaData(String name, Object value)