Package org.jboss.resource.adapter.jms.inflow

Examples of org.jboss.resource.adapter.jms.inflow.JmsActivationSpec


    * @param ctx the naming context
    * @throws Exception for any error
    */
   protected void setupDLQConnection(Context ctx) throws Exception
   {
      JmsActivationSpec spec = activation.getActivationSpec();
      String user = spec.getDLQUser();
      String pass = spec.getDLQPassword();
      String clientID = spec.getDLQClientID();
      JMSProviderAdapter adapter = activation.getProviderAdapter();
      String queueFactoryRef = adapter.getQueueFactoryRef();
      log.debug("Attempting to lookup dlq connection factory " + queueFactoryRef);
      QueueConnectionFactory qcf = (QueueConnectionFactory) Util.lookup(ctx, queueFactoryRef, QueueConnectionFactory.class);
      log.debug("Got dlq connection factory " + qcf + " from " + queueFactoryRef);
View Full Code Here


/*     */   }
/*     */
/*     */   protected void setupDLQConnection(Context ctx)
/*     */     throws Exception
/*     */   {
/* 124 */     JmsActivationSpec spec = this.activation.getActivationSpec();
/* 125 */     String user = spec.getDLQUser();
/* 126 */     String pass = spec.getDLQPassword();
/* 127 */     String clientID = spec.getDLQClientID();
/* 128 */     JMSProviderAdapter adapter = this.activation.getProviderAdapter();
/* 129 */     String queueFactoryRef = adapter.getQueueFactoryRef();
/* 130 */     log.debug("Attempting to lookup dlq connection factory " + queueFactoryRef);
/* 131 */     QueueConnectionFactory qcf = (QueueConnectionFactory)Util.lookup(ctx, queueFactoryRef, QueueConnectionFactory.class);
/* 132 */     log.debug("Got dlq connection factory " + qcf + " from " + queueFactoryRef);
View Full Code Here

TOP

Related Classes of org.jboss.resource.adapter.jms.inflow.JmsActivationSpec

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.