/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.resource.activemq.jms2; import org.apache.activemq.ra.ActiveMQManagedConnection; import org.apache.activemq.ra.ManagedConnectionProxy; import javax.jms.Connection; import javax.jms.ConnectionConsumer; import javax.jms.ExceptionListener; import javax.jms.JMSException; import javax.jms.QueueConnection; import javax.jms.ServerSessionPool; import javax.jms.Session; import javax.jms.Topic; import javax.jms.TopicConnection; import javax.resource.spi.ConnectionRequestInfo; public class TomEEManagedConnectionProxy extends ManagedConnectionProxy // cause org.apache.openejb.resource.AutoConnectionTracker.proxyConnection() just uses getInterfaces() implements Connection, QueueConnection, TopicConnection, ExceptionListener { private volatile ActiveMQManagedConnection connection; public TomEEManagedConnectionProxy(final ActiveMQManagedConnection managedConnection, final ConnectionRequestInfo info) { super(managedConnection, info); connection = managedConnection; } @Override public void cleanup() { super.cleanup(); connection = null; } @Override public Session createSession(final int sessionMode) throws JMSException { return connection.getPhysicalConnection().createSession(sessionMode); } @Override public Session createSession() throws JMSException { return connection.getPhysicalConnection().createSession(); } @Override public ConnectionConsumer createSharedDurableConnectionConsumer(final Topic topic, final String subscriptionName, final String messageSelector, final ServerSessionPool sessionPool, final int maxMessages) throws JMSException { return connection.getPhysicalConnection().createSharedDurableConnectionConsumer(topic, subscriptionName, messageSelector, sessionPool, maxMessages); } @Override public ConnectionConsumer createSharedConnectionConsumer(final Topic topic, final String subscriptionName, final String messageSelector, final ServerSessionPool sessionPool, final int maxMessages) throws JMSException { return connection.getPhysicalConnection().createSharedConnectionConsumer(topic, subscriptionName, messageSelector, sessionPool, maxMessages); } }