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

Examples of com.sun.enterprise.admin.jmx.remote.comm.AuthenticationInfo


    /** Sets the authentication information */
   
    private static AuthenticationInfo env2AuthenticationInfo(Map env) {
        final String user = (String) env.get(DefaultConfiguration.ADMIN_USER_ENV_PROPERTY_NAME);
        final String pwd  = (String) env.get(DefaultConfiguration.ADMIN_PASSWORD_ENV_PROPERTY_NAME);
        return ( new AuthenticationInfo(user, pwd) );
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.jmx.remote.comm.AuthenticationInfo

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.