com.ibm.broker.config.proxy

Class MessageFlowProxy.Node

  • java.lang.Object
    • com.ibm.broker.config.proxy.MessageFlowProxy.Node
  • Enclosing class:
    MessageFlowProxy


    public class MessageFlowProxy.Node
    extends java.lang.Object
    A small class that represents a node in a flow. Instances are generated on demand from the getNodes() method and by using the method getNodeFromString().
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getName()
      Returns the name (label) of the node
      java.util.Properties getProperties()
      Returns any properties configured on the node, where each key in the supplied Properties object is the internal name of the property, and the value is the assigned value of that property.
      java.lang.String getType()
      Returns the internal type (class name) of the node
      java.lang.String getUUID()
      Returns the unique identifier of the node
      java.lang.String toString() 
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the name (label) of the node
      • getType

        public java.lang.String getType()
        Returns the internal type (class name) of the node
      • getUUID

        public java.lang.String getUUID()
        Returns the unique identifier of the node
      • getProperties

        public java.util.Properties getProperties()
        Returns any properties configured on the node, where each key in the supplied Properties object is the internal name of the property, and the value is the assigned value of that property. The object includes: any overrides from the deployment descriptor. The object does not include: complex properties that might include whitespace (e.g. ESQL compute expressions), nor any properties that have not changed from the default.
      • toString

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