Package org.apache.catalina

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


        String name=objectName.getKeyProperty("host");
        if( name != null ) {       
            Host host = (Host) connector.getService().getContainer().findChild(name);
            String[] aliases = host.findAliases();
            mapper.addHost(name, aliases, objectName);
            host.addContainerListener(this);
            if(log.isDebugEnabled())
                log.debug(sm.getString
                     ("mapperListener.registerHost", name, domain));
        }
    }
View Full Code Here


        if( name != null ) {       
            Host host = (Host) ServerFactory.getServer().findService(
                    domain).getContainer().findChild(name);
            String[] aliases = host.findAliases();
            mapper.addHost(name, aliases, objectName);
            host.addContainerListener(this);
            if(log.isDebugEnabled())
                log.debug(sm.getString
                     ("mapperListener.registerHost", 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.