Package com.sun.enterprise.deployment.node.runtime.application.wls

Examples of com.sun.enterprise.deployment.node.runtime.application.wls.WeblogicApplicationNode


    public RootXMLNode getRootXMLNode(Descriptor descriptor) {
        if (descriptor instanceof Application) {
            Application application = (Application)descriptor;
            RootXMLNode node = application.getRootNode(getDeploymentDescriptorPath())
            if (node == null) {
                node = new WeblogicApplicationNode(application);
                application.addRootNode(getDeploymentDescriptorPath(), node);
            }
            return node;
        }
        return new WeblogicApplicationNode();
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.node.runtime.application.wls.WeblogicApplicationNode

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.