Package org.apache.catalina

Examples of org.apache.catalina.Engine.removeChild()


        Engine engine = (Engine) service.getContainer();
        Host host = (Host) engine.findChild(hostName);

        // Remove this component from its parent component
        if(host!=null) {
            engine.removeChild(host);
        }
    }


    /**
 
View Full Code Here


    }

    /** {@inheritDoc} */
    public synchronized void removeHost(Host host) {
        final Engine engine = this.engine;
        engine.removeChild(host);
        // FIXME: Hack, remove with next JBW build
        for (LifecycleListener listener : service.findLifecycleListeners()) {
            if (listener instanceof ServiceMapperListener) {
                host.removeContainerListener((ServiceMapperListener) listener);
            }
View Full Code Here

        // Remove this component from its parent component
        if(host!=null) {
            if(host instanceof StandardHost)
                ((StandardHost)host).destroy();
            else
                engine.removeChild(host);
        }

    }

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.