Examples of WebGatewayDeploymentFactory


Examples of org.jboss.internal.soa.esb.listeners.war.WebGatewayDeploymentFactory

        for(Map.Entry<String, List<ConfigTree>> listenerGroup : listenerGroupEntries) {
            List<ConfigTree> listeners = listenerGroup.getValue();

            String gatewayClass = listeners.get(0).getAttribute(ListenerTagNames.GATEWAY_CLASS_TAG);
            if(gatewayClass != null) {
                WebGatewayDeploymentFactory deploymentFactory = WebGatewayDeploymentFactory.FactoryBuilder.createInstance(gatewayClass);

                if(deploymentFactory != null) {
                    // For each listener...
                    for(ConfigTree listenerConfig : listeners) {
                        deploymentFactory.updateWebModel(deploymentName, listenerConfig, webModel);
                    }
                }
            }
        }
    }
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.