Package com.sun.enterprise.admin.jmx.remote.https

Examples of com.sun.enterprise.admin.jmx.remote.https.NoCertCheckX509TrustManager


        // (without user confirmation) and enters it into the asadmintruststore.
        Boolean doNotConfirmCert = new Boolean(
            getNodeAgentPropertyReader().doNotConfirmServerCert());
        if (doNotConfirmCert.booleanValue()) {
            if (bDebug) System.out.println("do not confirm server certificate");           
            NoCertCheckX509TrustManager tm =
                new NoCertCheckX509TrustManager(serviceUrl);
            env.put(DefaultConfiguration.TRUST_MANAGER_PROPERTY_NAME, tm);
        } else if (bDebug) {
            System.out.println("confirm server certificate");
        }
        return env;
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.jmx.remote.https.NoCertCheckX509TrustManager

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.