⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outboundqueueconnectionfactory.java

📁 一个类似于openJMS分布在ObjectWeb之下的JMS消息中间件。
💻 JAVA
字号:
/* * JORAM: Java(TM) Open Reliable Asynchronous Messaging * Copyright (C) 2004 - Bull SA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or any later version. *  * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 * USA. * * Initial developer(s): Frederic Maistre (Bull SA) * Contributor(s): Nicolas Tachker (Bull SA) */package org.objectweb.joram.client.connector;import javax.jms.IllegalStateException;import javax.jms.JMSException;import javax.jms.JMSSecurityException;import javax.resource.spi.ConnectionManager;import javax.resource.spi.ConnectionRequestInfo;import org.objectweb.util.monolog.api.BasicLevel;/** * An <code>OutboundQueueConnectionFactory</code> instance is used for * getting a PTP connection to an underlying JORAM server. */public class OutboundQueueConnectionFactory             extends OutboundConnectionFactory             implements javax.jms.QueueConnectionFactory,                        java.io.Serializable,                        javax.resource.Referenceable{  /**   * Constructs an <code>OutboundQueueConnectionFactory</code> instance.   *   * @param mcf        Central manager for outbound connectivity.   * @param cxManager  Manager for connection pooling.   */  OutboundQueueConnectionFactory(ManagedConnectionFactoryImpl mcf,                                 ConnectionManager cxManager)  {    super(mcf, cxManager);    if (AdapterTracing.dbgAdapter.isLoggable(BasicLevel.DEBUG))      AdapterTracing.dbgAdapter.log(BasicLevel.DEBUG,                                     "OutboundQueueConnectionFactory(" + mcf +                                     ", " + cxManager + ")");  }  /**   * Requests a PTP connection for the default user, eventually returns an   * <code>OutboundQueueConnection</code> instance.   *   * @exception JMSSecurityException   If connecting is not allowed.   * @exception IllegalStateException  If the underlying JORAM server   *                                   is not reachable.   * @exception JMSException           Generic exception.   */  public javax.jms.QueueConnection createQueueConnection()     throws JMSException {    if (AdapterTracing.dbgAdapter.isLoggable(BasicLevel.DEBUG))      AdapterTracing.dbgAdapter.log(BasicLevel.DEBUG, this + " createQueueConnection()");    return createQueueConnection(mcf.userName, mcf.password);  }  /**   * Requests a PTP connection for a given user, eventually returns an   * <code>OutboundConnection</code> instance.   *   * @exception JMSSecurityException   If connecting is not allowed.   * @exception IllegalStateException  If the underlying JORAM server   *                                   is not reachable.   * @exception JMSException           Generic exception.   */  public javax.jms.QueueConnection      createQueueConnection(String userName, String password)    throws JMSException {    if (AdapterTracing.dbgAdapter.isLoggable(BasicLevel.DEBUG))      AdapterTracing.dbgAdapter.log(BasicLevel.DEBUG,                                     this + " createQueueConnection(" + userName +                                     ", " + password + ")");    try {      QueueConnectionRequest cxRequest =        new QueueConnectionRequest(userName, password);      Object o = cxManager.allocateConnection(mcf, cxRequest);      if (AdapterTracing.dbgAdapter.isLoggable(BasicLevel.DEBUG))        AdapterTracing.dbgAdapter.log(BasicLevel.DEBUG,                                       this + " createQueueConnection connection = " + o);      return (javax.jms.QueueConnection) o;    } catch (javax.resource.spi.SecurityException exc) {      throw new JMSSecurityException("Invalid user identification: " + exc);    } catch (javax.resource.spi.CommException exc) {      throw new IllegalStateException("Could not connect to the JORAM server: "                                      + exc);    } catch (javax.resource.ResourceException exc) {      throw new JMSException("Could not create connection: " + exc);    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -