Package org.jboss.soa.esb.notification.jms

Examples of org.jboss.soa.esb.notification.jms.DefaultJMSPropertiesSetter


        jndiPkgPrefix = properties.getAttribute( JMSEpr.JNDI_PKG_PREFIX_TAG, Configuration.getJndiServerPkgPrefix());
        connectionFactory = properties.getAttribute( JMSEpr.CONNECTION_FACTORY_TAG, "ConnectionFactory");
       
        final String propertyStrategy = properties.getAttribute(PROPERTY_STRATEGY) ;
        if (propertyStrategy == null) {
            jmsPropertiesStrategy = new DefaultJMSPropertiesSetter() ;
        } else {
            try {
                final Class propertyStrategyClass = ClassUtil.forName(propertyStrategy, getClass()) ;
                jmsPropertiesStrategy = (JMSPropertiesSetter)propertyStrategyClass.newInstance() ;
            } catch (final Throwable th) {
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.notification.jms.DefaultJMSPropertiesSetter

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.