Package javax.jms
Interface ConnectionMetaData
-
public interface ConnectionMetaDataAConnectionMetaDataobject provides information describing theConnectionobject.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetJMSMajorVersion()Gets the JMS major version number.intgetJMSMinorVersion()Gets the JMS minor version number.java.lang.StringgetJMSProviderName()Gets the JMS provider name.java.lang.StringgetJMSVersion()Gets the JMS API version.java.util.EnumerationgetJMSXPropertyNames()Gets an enumeration of the JMSX property names.intgetProviderMajorVersion()Gets the JMS provider major version number.intgetProviderMinorVersion()Gets the JMS provider minor version number.java.lang.StringgetProviderVersion()Gets the JMS provider version.
-
-
-
Method Detail
-
getJMSVersion
java.lang.String getJMSVersion() throws JMSExceptionGets 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
int getJMSMajorVersion() throws JMSExceptionGets 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
int getJMSMinorVersion() throws JMSExceptionGets 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
java.lang.String getJMSProviderName() throws JMSExceptionGets 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
java.lang.String getProviderVersion() throws JMSExceptionGets 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
int getProviderMajorVersion() throws JMSExceptionGets 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
int getProviderMinorVersion() throws JMSExceptionGets 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
java.util.Enumeration getJMSXPropertyNames() throws JMSExceptionGets 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.
-
-