Package org.ejbca.config

Examples of org.ejbca.config.GlobalConfiguration.initialize()


        ret = globalconfigurationsession.getCachedGlobalConfiguration(administrator);
        if (initialContext == null) {
            initialContext = new InitialContext();
        }
        Context myenv = (Context) initialContext.lookup("java:comp/env");     
        ret.initialize( (String) myenv.lookup("ADMINDIRECTORY"),
            WebConfiguration.getAvailableLanguages(), (String) myenv.lookup("AVAILABLETHEMES"),
                ""+WebConfiguration.getPublicHttpPort(), ""+WebConfiguration.getPrivateHttpsPort(),
                (String) myenv.lookup("PUBLICPROTOCOL"),(String) myenv.lookup("PRIVATEPROTOCOL"));
        return ret;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.