Package org.apache.geronimo.jaxws.info

Examples of org.apache.geronimo.jaxws.info.HandlerChainInfo


public class HandlerChainsInfoBuilder {

    public HandlerChainsInfo build(HandlerChains handlerChains) {
        HandlerChainsInfo handlerChainsInfo = new HandlerChainsInfo();
        for (HandlerChain handlerChain : handlerChains.getHandlerChain()) {
            HandlerChainInfo handlerChainInfo = new HandlerChainInfo();
            if (handlerChain.getServiceNamePattern() != null) {
                handlerChainInfo.serviceNamePattern = handlerChain.getServiceNamePattern();
            } else if (handlerChain.getPortNamePattern() != null) {
                handlerChainInfo.portNamePattern = handlerChain.getPortNamePattern();
            } else if (handlerChain.getProtocolBindings() != null) {
View Full Code Here

TOP

Related Classes of org.apache.geronimo.jaxws.info.HandlerChainInfo

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.