Package org.objectweb.joram.client.jms
Class ConnectionMetaData
- java.lang.Object
-
- org.objectweb.joram.client.jms.ConnectionMetaData
-
- All Implemented Interfaces:
ConnectionMetaData
public final class ConnectionMetaData extends Object implements ConnectionMetaData
Implements thejavax.jms.ConnectionMetaDatainterface.
-
-
Field Summary
Fields Modifier and Type Field Description static intjmsMajorVersionJMS major version numberstatic intjmsMinorVersionJMS minor version numberstatic StringjmsVersionJMS API version, currently 1.1private static VectorjmsxPropertiesEnumeration of the Joram's JMSX property names, currently JMSXDeliveryCount, JMSXGroupID and JMSXGroupSeq.static intproviderMajorVersionJoram's major version number.static intproviderMinorVersionJoram's minor version number.static StringproviderNameJMS provider name: Joramstatic StringproviderVersionJoram's implementation version.
-
Constructor Summary
Constructors Constructor Description ConnectionMetaData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetJMSMajorVersion()API method: Gets the JMS major version number.intgetJMSMinorVersion()API method: Gets the JMS minor version numberStringgetJMSProviderName()API method: Gets the JMS provider name: Joram.StringgetJMSVersion()API method: Gets the JMS API version, currently 1.1.EnumerationgetJMSXPropertyNames()API method: Gets an enumeration of the JMSX property names.intgetProviderMajorVersion()API method: Gets the Joram's major version number.intgetProviderMinorVersion()API method: Gets the Joram's minor version number.StringgetProviderVersion()API method: Gets the Joram's implementation version.
-
-
-
Field Detail
-
jmsMajorVersion
public static final int jmsMajorVersion
JMS major version number- See Also:
- Constant Field Values
-
jmsMinorVersion
public static final int jmsMinorVersion
JMS minor version number- See Also:
- Constant Field Values
-
jmsVersion
public static final String jmsVersion
JMS API version, currently 1.1- See Also:
- Constant Field Values
-
providerName
public static final String providerName
JMS provider name: Joram- See Also:
- Constant Field Values
-
providerMajorVersion
public static final int providerMajorVersion
Joram's major version number.
-
providerMinorVersion
public static final int providerMinorVersion
Joram's minor version number.
-
providerVersion
public static final String providerVersion
Joram's implementation version.
-
jmsxProperties
private static final Vector jmsxProperties
Enumeration of the Joram's JMSX property names, currently JMSXDeliveryCount, JMSXGroupID and JMSXGroupSeq.
-
-
Method Detail
-
getJMSMajorVersion
public int getJMSMajorVersion() throws JMSExceptionAPI method: Gets the JMS major version number.- Specified by:
getJMSMajorVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getJMSMinorVersion
public int getJMSMinorVersion() throws JMSExceptionAPI method: Gets the JMS minor version number- Specified by:
getJMSMinorVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getJMSVersion
public String getJMSVersion() throws JMSException
API method: Gets the JMS API version, currently 1.1.- Specified by:
getJMSVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getJMSProviderName
public String getJMSProviderName() throws JMSException
API method: Gets the JMS provider name: Joram.- Specified by:
getJMSProviderNamein interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getJMSXPropertyNames
public Enumeration getJMSXPropertyNames() throws JMSException
API method: Gets an enumeration of the JMSX property names.- Specified by:
getJMSXPropertyNamesin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getProviderMajorVersion
public int getProviderMajorVersion() throws JMSExceptionAPI method: Gets the Joram's major version number.- Specified by:
getProviderMajorVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getProviderMinorVersion
public int getProviderMinorVersion() throws JMSExceptionAPI method: Gets the Joram's minor version number.- Specified by:
getProviderMinorVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
getProviderVersion
public String getProviderVersion() throws JMSException
API method: Gets the Joram's implementation version.- Specified by:
getProviderVersionin interfaceConnectionMetaData- Throws:
JMSException- Actually never thrown.
-
-