Package javax.jms
Interface ConnectionMetaData
public interface ConnectionMetaData
A
ConnectionMetaData object provides information describing the
Connection object.- Since:
- JMS 1.0
-
Method Summary
Modifier and TypeMethodDescriptionintGets the JMS major version number.intGets the JMS minor version number.Gets the JMS provider name.Gets the JMS API version.Gets an enumeration of the JMSX property names.intGets the JMS provider major version number.intGets the JMS provider minor version number.Gets the JMS provider version.
-
Method Details
-
getJMSVersion
Gets the JMS API version.- Returns:
- the JMS API version
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getJMSMajorVersion
Gets the JMS major version number.- Returns:
- the JMS API major version number
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getJMSMinorVersion
Gets the JMS minor version number.- Returns:
- the JMS API minor version number
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getJMSProviderName
Gets the JMS provider name.- Returns:
- the JMS provider name
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getProviderVersion
Gets the JMS provider version.- Returns:
- the JMS provider version
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getProviderMajorVersion
Gets the JMS provider major version number.- Returns:
- the JMS provider major version number
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getProviderMinorVersion
Gets the JMS provider minor version number.- Returns:
- the JMS provider minor version number
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-
getJMSXPropertyNames
Gets an enumeration of the JMSX property names.- Returns:
- an Enumeration of JMSX property names
- Throws:
JMSException- if the JMS provider fails to retrieve the metadata due to some internal error.
-