Class ClusterBrokerInfo


  • public class ClusterBrokerInfo
    extends java.lang.Object
    This class represents the description of a Broker in Cluster.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String broker_host
      The name of the broker host.
      java.lang.String broker_name
      The name of the broker
      java.lang.String cluster_name
      The name of the broker cluster.
      java.lang.String description
      The description of the broker
    • Constructor Summary

      Constructors 
      Constructor Description
      ClusterBrokerInfo()
      Create a broker information object.
      ClusterBrokerInfo​(BrokerInfo info)
      Create a broker information object from BrokerInfo object.
      ClusterBrokerInfo​(java.lang.String cluster, java.lang.String host, java.lang.String name, java.lang.String description)
      Create and initialize.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • cluster_name

        public java.lang.String cluster_name
        The name of the broker cluster. null if the broker is not in a cluster.
      • broker_host

        public java.lang.String broker_host
        The name of the broker host.
      • broker_name

        public java.lang.String broker_name
        The name of the broker
      • description

        public java.lang.String description
        The description of the broker
    • Constructor Detail

      • ClusterBrokerInfo

        public ClusterBrokerInfo()
        Create a broker information object.
      • ClusterBrokerInfo

        public ClusterBrokerInfo​(java.lang.String cluster,
                                 java.lang.String host,
                                 java.lang.String name,
                                 java.lang.String description)
        Create and initialize.
      • ClusterBrokerInfo

        public ClusterBrokerInfo​(BrokerInfo info)
        Create a broker information object from BrokerInfo object.