Class NodeID

java.lang.Object
com.aquima.interactions.flow.NodeID
All Implemented Interfaces:
Serializable

public class NodeID extends Object implements Serializable
This class is used to uniquely identify a node of a flow in the system.
Since:
5.0
Author:
O. Kerpershoek
See Also:
  • Constructor Details

    • NodeID

      public NodeID(String flowName, String nodeId)
      Constructs a node ID from a flow name and node name/id.
      Parameters:
      flowName - The name of the flow the node is located in.
      nodeId - The ID of the node, which is unique within the flow.
  • Method Details

    • getFlowName

      public String getFlowName()
      This method returns the name of the flow the node is located in.
      Returns:
      the name of the flow the node is located in.
    • getNodeId

      public String getNodeId()
      This method returns the ID of the node, which is unique within the flow the node is located in.
      Returns:
      the ID of the node, which is unique within the flow the node is located in.
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object