blob: 7ba5dd5374e67f1a12e6ea95dda58206296f9d32 [file] [log] [blame]
/*
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.qpid.ra;
import javax.resource.ResourceException;
import javax.resource.spi.ConnectionManager;
import javax.resource.spi.ConnectionRequestInfo;
import javax.resource.spi.ManagedConnection;
import javax.resource.spi.ManagedConnectionFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The connection manager used in non-managed environments.
*
*/
public class QpidRAConnectionManager implements ConnectionManager
{
/** Serial version UID */
private static final long serialVersionUID = 688529567919039006L;
/** The logger */
private static final Logger _log = LoggerFactory.getLogger(QpidRAConnectionManager.class);
/**
* Constructor
*/
public QpidRAConnectionManager()
{
if (_log.isTraceEnabled())
{
_log.trace("constructor()");
}
}
/**
* Allocates a connection
* @param mcf The managed connection factory
* @param cxRequestInfo The connection request information
* @return The connection
* @exception ResourceException Thrown if there is a problem obtaining the connection
*/
public Object allocateConnection(final ManagedConnectionFactory mcf, final ConnectionRequestInfo cxRequestInfo) throws ResourceException
{
if (_log.isTraceEnabled())
{
_log.trace("allocateConnection(" + mcf + ", " + cxRequestInfo + ")");
}
ManagedConnection mc = mcf.createManagedConnection(null, cxRequestInfo);
Object c = mc.getConnection(null, cxRequestInfo);
if (_log.isTraceEnabled())
{
_log.trace("Allocated connection: " + c + ", with managed connection: " + mc);
}
return c;
}
}