Package org.apache.catalina

Examples of org.apache.catalina.Host.removeContainerListener()


            Host host =
                (Host) connector.getService().getContainer().findChild(name);
       
            mapper.removeHost(name);
            if (host != null) {
                host.removeContainerListener(this);
            }
            if(log.isDebugEnabled())
                log.debug(sm.getString
                        ("mapperListener.unregisterHost", name, domain));
        }
View Full Code Here


        if( name != null ) {
            Host host = (Host) ServerFactory.getServer().findService(
                domain).getContainer().findChild(name);
       
            mapper.removeHost(name);
            host.removeContainerListener(this);
            if(log.isDebugEnabled())
                log.debug(sm.getString
                        ("mapperListener.unregisterHost", name, domain));
        }
    }
View Full Code Here

        if( name != null ) {
            Host host =
                (Host) connector.getService().getContainer().findChild(name);
       
            mapper.removeHost(name);
            host.removeContainerListener(this);
            if(log.isDebugEnabled())
                log.debug(sm.getString
                        ("mapperListener.unregisterHost", name, domain));
        }
    }
View Full Code Here

            Host host =
                (Host) connector.getService().getContainer().findChild(name);
       
            mapper.removeHost(name);
            if (host != null) {
                host.removeContainerListener(this);
            }
            if(log.isDebugEnabled())
                log.debug(sm.getString
                        ("mapperListener.unregisterHost", name, domain));
        }
View Full Code Here

            Host host =
                (Host) connector.getService().getContainer().findChild(name);

            mapper.removeHost(name);
            if (host != null) {
                host.removeContainerListener(this);
            }
            if(log.isDebugEnabled())
                log.debug(sm.getString
                        ("mapperListener.unregisterHost", name, domain));
        }
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.