User: chirino
Date: 01/08/17 17:07:48
Modified: src/main/org/jboss/mq SpyConnectionMetaData.java
Log:
Getting ready for the 1.0.0 Beta release
Revision Changes Path
1.3 +12 -21 jbossmq/src/main/org/jboss/mq/SpyConnectionMetaData.java
Index: SpyConnectionMetaData.java
===================================================================
RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/SpyConnectionMetaData.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SpyConnectionMetaData.java 2001/08/17 03:04:01 1.2
+++ SpyConnectionMetaData.java 2001/08/18 00:07:48 1.3
@@ -17,54 +17,45 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @created August 16, 2001
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
*/
public class SpyConnectionMetaData
implements ConnectionMetaData {
// Public --------------------------------------------------------
- public String getJMSVersion()
- throws JMSException {
+ public String getJMSVersion() {
return "1.0.2";
}
- public int getJMSMajorVersion()
- throws JMSException {
+ public int getJMSMajorVersion() {
return 1;
}
- public int getJMSMinorVersion()
- throws JMSException {
+ public int getJMSMinorVersion() {
return 0;
}
- public String getJMSProviderName()
- throws JMSException {
+ public String getJMSProviderName() {
return "JBossMQ";
}
- public String getProviderVersion()
- throws JMSException {
- return "0.8";
+ public String getProviderVersion() {
+ return "1.0.0 Beta";
}
- public int getProviderMajorVersion()
- throws JMSException {
- return 0;
+ public int getProviderMajorVersion() {
+ return 1;
}
- public int getProviderMinorVersion()
- throws JMSException {
- return 8;
+ public int getProviderMinorVersion() {
+ return 0;
}
- public Enumeration getJMSXPropertyNames()
- throws JMSException {
+ public Enumeration getJMSXPropertyNames() {
Vector vector = new Vector();
vector.add( "JMSXGroupID" );
vector.add( "JMSXGroupSeq" );
return vector.elements();
}
-
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development