com.ibm.websphere.sib.admin
Interface SIBMQQueueAttributes
-
public interface SIBMQQueueAttributesThis class wrappers the attributes of a WebSphere MQ Queue definition.
-
-
Method Summary
Methods Modifier and Type Method and Description java.lang.IntegergetCurrentDepth()Returns the queue snapshot current depth for the queue.java.lang.StringgetDescription()Gets the queue description.java.lang.IntegergetDisposition()Returns the queue's QSGDISP type.java.lang.IntegergetInputProcessCount()Returns the snapshot input process count for the queue.java.lang.IntegergetMaxDepth()Returns the queue maximum depth.java.lang.StringgetName()Returns the queue name.java.lang.IntegergetOutputProcessCount()Returns the snapshot output process count for the queue.java.lang.IntegergetType()Gets the queue type (Alias/Local etc).java.lang.BooleanisGetEnabled()Returns true if the queue is get enabled.java.lang.BooleanisPutEnabled()Returns true if the queue is put enabled.java.lang.BooleanisQueueShareable()Returns true if the queue is shareable.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the queue name.- Returns:
- queue name.
-
getDescription
java.lang.String getDescription()
Gets the queue description.- Returns:
- queue description.
-
isPutEnabled
java.lang.Boolean isPutEnabled()
Returns true if the queue is put enabled.- Returns:
- true if put is enabled; else false.
-
isGetEnabled
java.lang.Boolean isGetEnabled()
Returns true if the queue is get enabled.- Returns:
- true if queue get is enabled; else false.
-
getCurrentDepth
java.lang.Integer getCurrentDepth()
Returns the queue snapshot current depth for the queue.- Returns:
- snapshot current depth for the queue.
-
getMaxDepth
java.lang.Integer getMaxDepth()
Returns the queue maximum depth.- Returns:
- queue maximum depth.
-
getInputProcessCount
java.lang.Integer getInputProcessCount()
Returns the snapshot input process count for the queue.- Returns:
- snapshot input process count for the queue.
-
getOutputProcessCount
java.lang.Integer getOutputProcessCount()
Returns the snapshot output process count for the queue.- Returns:
- snapshot output process count for the queue.
-
isQueueShareable
java.lang.Boolean isQueueShareable()
Returns true if the queue is shareable.- Returns:
- true if the queue is shareable; else false.
-
getType
java.lang.Integer getType()
Gets the queue type (Alias/Local etc).- Returns:
- queue type (Alias/Local etc).
-
getDisposition
java.lang.Integer getDisposition()
Returns the queue's QSGDISP type.- Returns:
- queue's QSGDISP type.
-
-