Package org.apache.geronimo.jaxws.info

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


                handlerChainInfo.portNamePattern = handlerChain.getPortNamePattern();
            } else if (handlerChain.getProtocolBindings() != null) {
                handlerChainInfo.protocolBindings.addAll(handlerChain.getProtocolBindings());
            }
            for (Handler handler : handlerChain.getHandler()) {
                HandlerInfo handlerInfo = new HandlerInfo();
                handlerInfo.handlerName = handler.getHandlerName();
                handlerInfo.handlerClass = handler.getHandlerClass();
                if (handler.getSoapRole() != null) {
                    handlerInfo.soapRoles.addAll(handler.getSoapRole());
                }
View Full Code Here

TOP

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

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.