java.lang.Object com.ibm.broker.config.proxy.TopicProxy.QoP
public static class TopicProxy.QoP
extends Object
A small structure that represents all the possible types of a topic's quality of protection. Follows the TypeDef-Enum pattern.
Field | Description |
---|---|
channelIntegrity | Defines Channel Integrity QoP. |
encrypted | Defines Encrypted QoP. |
messageIntegrity | Defines Message Integrity QoP. |
none | States that QoP is not applied. |
unknown | Defines an unknown QoP. |
Method | Description |
---|---|
TopicProxy.QoP getQualityOfProtectionFromString(String) | Returns a QoP value given a property String. |
String toString() | Returns the String representation of the QoP. |
public static com.ibm.broker.config.proxy.TopicProxy.QoP channelIntegrityDefines Channel Integrity QoP.
public static com.ibm.broker.config.proxy.TopicProxy.QoP encryptedDefines Encrypted QoP.
public static com.ibm.broker.config.proxy.TopicProxy.QoP messageIntegrityDefines Message Integrity QoP.
public static com.ibm.broker.config.proxy.TopicProxy.QoP noneStates that QoP is not applied. This is the default value.
public static com.ibm.broker.config.proxy.TopicProxy.QoP unknownDefines an unknown QoP.
public static TopicProxy.QoP getQualityOfProtectionFromString(String qop)Returns a QoP value given a property String.
- Parameters
- qop - String taken from data supplied by the Configuration Manager
- Returns
- QoP That corresponds to the supplied String, or unknown if the String was not understood.
public String toString()Returns the String representation of the QoP.