Package com.sun.enterprise.deployment.phasing

Examples of com.sun.enterprise.deployment.phasing.ApplicationReferenceHelper


        String virtualServers) throws DeploymentTargetException {

        try {
            if (!ClusterHelper.clusterReferencesApplication(configContext,
                getName(), appName)) {
                ApplicationReferenceHelper refHelper =
                    new ApplicationReferenceHelper(configContext);
                refHelper.createApplicationReference(getValidTypes(),
                    getName(), enabled, virtualServers, appName);           
            }
        } catch(Throwable t) {
            // FIXME
            throw new DeploymentTargetException(t);
View Full Code Here


     */
    public void removeAppReference(String appName)
        throws DeploymentTargetException
    {
        try {
            ApplicationReferenceHelper refHelper = new ApplicationReferenceHelper(
                configContext);
            refHelper.deleteApplicationReference(getValidTypes(), getName(), appName);
        } catch(Throwable t) {
            throw new DeploymentTargetException(t);
        }    
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.phasing.ApplicationReferenceHelper

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.