Package org.apache.logging.log4j.core.net.jms

Examples of org.apache.logging.log4j.core.net.jms.JmsTopicManager


        if (name == null) {
            LOGGER.error("No name provided for JmsQueueAppender");
            return null;
        }
        final boolean ignoreExceptions = Booleans.parseBoolean(ignore, true);
        final JmsTopicManager manager = JmsTopicManager.getJmsTopicManager(factoryName, providerURL, urlPkgPrefixes,
            securityPrincipalName, securityCredentials, factoryBindingName, topicBindingName, userName, password);
        if (manager == null) {
            return null;
        }
        if (layout == null) {
View Full Code Here

TOP

Related Classes of org.apache.logging.log4j.core.net.jms.JmsTopicManager

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.