001 /** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 package org.apache.activemq.ra; 018 019 import javax.jms.Connection; 020 import javax.jms.ConnectionFactory; 021 import javax.jms.JMSException; 022 import javax.jms.QueueConnection; 023 import javax.jms.QueueConnectionFactory; 024 import javax.jms.TopicConnection; 025 import javax.jms.TopicConnectionFactory; 026 027 /** 028 * A {@link ConnectionFactory} implementation which creates connections which can 029 * be used with the ActiveMQ JCA Resource Adapter to publish messages using the 030 * same underlying JMS session that is used to dispatch messages. 031 * 032 * 033 */ 034 public class InboundConnectionProxyFactory implements ConnectionFactory, QueueConnectionFactory, TopicConnectionFactory { 035 036 public Connection createConnection() throws JMSException { 037 return new InboundConnectionProxy(); 038 } 039 040 public Connection createConnection(String userName, String password) throws JMSException { 041 return createConnection(); 042 } 043 044 public QueueConnection createQueueConnection() throws JMSException { 045 return new InboundConnectionProxy(); 046 } 047 048 public QueueConnection createQueueConnection(String userName, String password) throws JMSException { 049 return createQueueConnection(); 050 } 051 052 public TopicConnection createTopicConnection() throws JMSException { 053 return new InboundConnectionProxy(); 054 } 055 056 public TopicConnection createTopicConnection(String userName, String password) throws JMSException { 057 return createTopicConnection(); 058 } 059 }