java.lang.Object
org.activemq.message.AbstractPacket
org.activemq.message.BrokerInfo
- All Implemented Interfaces:
- Packet
- public class BrokerInfo
- extends AbstractPacket
Information about a connected Broker
Fields inherited from interface org.activemq.message.Packet |
ACTIVEMQ_BROKER_INFO, ACTIVEMQ_BYTES_MESSAGE, ACTIVEMQ_CONNECTION_INFO, ACTIVEMQ_MAP_MESSAGE, ACTIVEMQ_MESSAGE, ACTIVEMQ_MSG_ACK, ACTIVEMQ_OBJECT_MESSAGE, ACTIVEMQ_STREAM_MESSAGE, ACTIVEMQ_TEXT_MESSAGE, BROKER_ADMIN_COMMAND, CACHED_VALUE_COMMAND, CAPACITY_INFO, CAPACITY_INFO_REQUEST, CLEANUP_CONNECTION_INFO, CONSUMER_INFO, DURABLE_UNSUBSCRIBE, INT_RESPONSE_RECEIPT_INFO, KEEP_ALIVE, NOT_SET, PRODUCER_INFO, RECEIPT_INFO, RESPONSE_RECEIPT_INFO, SESSION_INFO, TRANSACTION_INFO, WIRE_FORMAT_INFO, XA_TRANSACTION_INFO |
Methods inherited from class org.activemq.message.AbstractPacket |
addBrokerVisited, clearBrokersVisited, decrementMemoryReferenceCount, equals, equals, getBitArray, getBrokersVisited, getBrokersVisitedAsString, getId, getMemoryUsage, getMemoryUsageReferenceCount, getPacketTypeAsString, hashCode, hasVisited, incrementMemoryReferenceCount, initializeBrokersVisited, initializeOther, isJMSMessage, isReceipt, isReceiptRequired, setBitArray, setBrokersVisitedAsString, setId, setMemoryUsage, setReceiptRequired |
brokerName
private java.lang.String brokerName
clusterName
private java.lang.String clusterName
startTime
private long startTime
properties
private java.util.Properties properties
remote
private boolean remote
BrokerInfo
public BrokerInfo()
getPacketType
public int getPacketType()
- Return the type of Packet
getBrokerName
public java.lang.String getBrokerName()
setBrokerName
public void setBrokerName(java.lang.String newBrokerName)
getClusterName
public java.lang.String getClusterName()
setClusterName
public void setClusterName(java.lang.String newClusterName)
getProperties
public java.util.Properties getProperties()
setProperties
public void setProperties(java.util.Properties newProperties)
getStartTime
public long getStartTime()
setStartTime
public void setStartTime(long newStartTime)
isRemote
public boolean isRemote()
setRemote
public void setRemote(boolean boondocks)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null
, string concatenation will instead
use "null"
.
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode())
.
- Overrides:
toString
in class AbstractPacket