Package com.iplanet.ias.installer.core

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


        // create the actual domain directory, under the domain root
        File domainDir = new File(sc.domainRoot);
        domainDir.mkdirs();

        // Assuming that the native libraries have been loaded by the installer
        installConfig instconf = new installConfig();
       
        // invoke the createDomain on installConfig
        instconf.createServerInstance(sc);
    }
View Full Code Here


    public void deleteDomain(String domainName, Map domainConfig)
        throws DomainException
    {
        String domainRoot = (String) domainConfig.get(DomainConfig.K_DOMAIN_ROOT);
        try {
            installConfig instconf = new installConfig();
            instconf.deleteDomain(domainName, domainRoot);
        } catch(java.io.IOException ioe) {
            throw new DomainException("Error deleting domain: "+domainName);
        }
    }
View Full Code Here

TOP

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

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.