Package org.exolab.jms.config

Examples of org.exolab.jms.config.TcpsConfiguration


            // should never happen
            throw new IllegalStateException(exception.getMessage());
        }
        populateRequestInfo(info);

        TcpsConfiguration config = getConfiguration().getTcpsConfiguration();
        SSLProperties ssl = new SSLProperties();
        ssl.setKeyStore(config.getKeyStore());
        ssl.setKeyStorePassword(config.getKeyStorePassword());
        ssl.setKeyStoreType(config.getKeyStoreType());
        ssl.setTrustStore(config.getTrustStore());
        ssl.setTrustStorePassword(config.getTrustStorePassword());
        ssl.setTrustStoreType(config.getTrustStoreType());
        if (!ssl.isEmpty()) {
            info.setSSLProperties(ssl);
        }
        info.setNeedClientAuth(config.getNeedClientAuth());
        info.export(properties);
    }
View Full Code Here

TOP

Related Classes of org.exolab.jms.config.TcpsConfiguration

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.