[jboss-cvs] jboss-jms/src/main/org/jboss/jms/server/endpoint/advised ...
Timothy Fox
tim.fox at jboss.com
Thu Jul 27 15:01:55 EDT 2006
User: timfox
Date: 06/07/27 15:01:55
Modified: src/main/org/jboss/jms/server/endpoint/advised
ConnectionAdvised.java
ConnectionFactoryAdvised.java ConsumerAdvised.java
Log:
Mainly http://jira.jboss.com/jira/browse/JBMESSAGING-434 plus a few other bits and pieces
Revision Changes Path
1.8 +3 -3 jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConnectionAdvised.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConnectionAdvised.java
===================================================================
RCS file: /cvsroot/jboss/jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConnectionAdvised.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- ConnectionAdvised.java 23 May 2006 18:25:08 -0000 1.7
+++ ConnectionAdvised.java 27 Jul 2006 19:01:55 -0000 1.8
@@ -34,9 +34,9 @@
*
* @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
* @author <a href="mailto:ovidiu at jboss.org">Ovidiu Feodorov</a>
- * @version <tt>$Revision: 1.7 $</tt>
+ * @version <tt>$Revision: 1.8 $</tt>
*
- * $Id: ConnectionAdvised.java,v 1.7 2006/05/23 18:25:08 ovidiu Exp $
+ * $Id: ConnectionAdvised.java,v 1.8 2006/07/27 19:01:55 timfox Exp $
*/
public class ConnectionAdvised extends AdvisedSupport implements ConnectionEndpoint
{
@@ -99,7 +99,7 @@
endpoint.sendTransaction(request);
}
- public Xid[] getPreparedTransactions()
+ public Xid[] getPreparedTransactions() throws JMSException
{
return endpoint.getPreparedTransactions();
}
1.7 +1 -1 jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConnectionFactoryAdvised.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConnectionFactoryAdvised.java
===================================================================
RCS file: /cvsroot/jboss/jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConnectionFactoryAdvised.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- ConnectionFactoryAdvised.java 23 May 2006 18:25:08 -0000 1.6
+++ ConnectionFactoryAdvised.java 27 Jul 2006 19:01:55 -0000 1.7
@@ -64,7 +64,7 @@
return endpoint.createConnectionDelegate(username, password);
}
- public byte[] getClientAOPConfig()
+ public byte[] getClientAOPConfig() throws JMSException
{
return endpoint.getClientAOPConfig();
}
1.9 +2 -4 jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConsumerAdvised.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConsumerAdvised.java
===================================================================
RCS file: /cvsroot/jboss/jboss-jms/src/main/org/jboss/jms/server/endpoint/advised/ConsumerAdvised.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- ConsumerAdvised.java 17 Jul 2006 17:14:46 -0000 1.8
+++ ConsumerAdvised.java 27 Jul 2006 19:01:55 -0000 1.9
@@ -21,8 +21,6 @@
*/
package org.jboss.jms.server.endpoint.advised;
-import java.util.List;
-
import javax.jms.JMSException;
import org.jboss.jms.server.endpoint.ConsumerEndpoint;
@@ -33,9 +31,9 @@
*
* @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
* @author <a href="mailto:ovidiu at jboss.org">Ovidiu Feodorov</a>
- * @version <tt>$Revision: 1.8 $</tt>
+ * @version <tt>$Revision: 1.9 $</tt>
*
- * $Id: ConsumerAdvised.java,v 1.8 2006/07/17 17:14:46 timfox Exp $
+ * $Id: ConsumerAdvised.java,v 1.9 2006/07/27 19:01:55 timfox Exp $
*/
public class ConsumerAdvised extends AdvisedSupport implements ConsumerEndpoint
{
More information about the jboss-cvs-commits
mailing list