You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
884 B
36 lines
884 B
package javax.jms; |
|
|
|
import java.util.Enumeration; |
|
|
|
public abstract interface ConnectionMetaData |
|
{ |
|
public abstract String getJMSVersion() |
|
throws JMSException; |
|
|
|
public abstract int getJMSMajorVersion() |
|
throws JMSException; |
|
|
|
public abstract int getJMSMinorVersion() |
|
throws JMSException; |
|
|
|
public abstract String getJMSProviderName() |
|
throws JMSException; |
|
|
|
public abstract String getProviderVersion() |
|
throws JMSException; |
|
|
|
public abstract int getProviderMajorVersion() |
|
throws JMSException; |
|
|
|
public abstract int getProviderMinorVersion() |
|
throws JMSException; |
|
|
|
public abstract Enumeration getJMSXPropertyNames() |
|
throws JMSException; |
|
} |
|
|
|
|
|
/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ConnectionMetaData.class |
|
* Java compiler version: 5 (49.0) |
|
* JD-Core Version: 0.7.1 |
|
*/ |