1 23 24 25 package javax.jms; 26 27 import java.util.Enumeration ; 28 29 36 37 public interface ConnectionMetaData { 38 39 46 47 String 48 getJMSVersion() throws JMSException ; 49 50 51 58 59 int 60 getJMSMajorVersion() throws JMSException ; 61 62 63 70 71 int 72 getJMSMinorVersion() throws JMSException ; 73 74 75 82 83 String 84 getJMSProviderName() throws JMSException ; 85 86 87 94 95 String 96 getProviderVersion() throws JMSException ; 97 98 99 106 107 int 108 getProviderMajorVersion() throws JMSException ; 109 110 111 118 119 int 120 getProviderMinorVersion() throws JMSException ; 121 122 123 130 131 Enumeration 132 getJMSXPropertyNames() throws JMSException ; 133 } 134 | Popular Tags |