Package com.iplanet.ias.installer.core

Examples of com.iplanet.ias.installer.core.ServerConfig


        throws DomainException
    {
        // validate(domainConfig);

        // construct the ServerConfig obj, since validation succeeded
        ServerConfig sc = createServerConfig(domainConfig);
       
        // create the actual domain directory, under the domain root
        File domainDir = new File(sc.domainRoot);
        domainDir.mkdirs();
View Full Code Here


        return new File(domainRoot, domainName).exists();
    }

    private ServerConfig createServerConfig(Map domainConfig)
    {
        ServerConfig sc = new ServerConfig();
        sc.defaultLocale = (String) domainConfig.get(DomainConfig.K_DEFAULTLOCALE);
        sc.icuLib = (String) domainConfig.get(DomainConfig.K_ICULIB);
        sc.webServicesLib = (String) domainConfig.get(DomainConfig.K_WEBSVCSLIB);
        sc.perlRoot = (String) domainConfig.get(DomainConfig.K_PERLROOT);
        sc.serverID = PEWebCoreDomainsManager.SERVER_ID;
View Full Code Here

TOP

Related Classes of com.iplanet.ias.installer.core.ServerConfig

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.