Package org.switchyard.component.soap.config.model

Examples of org.switchyard.component.soap.config.model.InterceptorModel


     * @param desc the descriptor
     */
    public V1InterceptorsModel(Configuration config, Descriptor desc) {
        super(config, desc);
        for (Configuration interceptor_config : config.getChildren(INTERCEPTOR)) {
            InterceptorModel interceptor = (InterceptorModel)readModel(interceptor_config);
            if (interceptor != null) {
                _interceptors.add(interceptor);
            }
        }
        setModelChildrenOrder(INTERCEPTOR);
View Full Code Here

TOP

Related Classes of org.switchyard.component.soap.config.model.InterceptorModel

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.