Package org.talend.esb.policy.transformation.interceptor.xslt

Examples of org.talend.esb.policy.transformation.interceptor.xslt.HttpAwareXSLTInInterceptor


            MessageType msgType = MessageType.valueOf(tas.getMessageType());
            AppliesToType appliesToType  = AppliesToType.valueOf(tas.getAppliesTo());

            //XSLTInInterceptor xsltIn = new XSLTInInterceptor(inXSLTPath);
            HttpAwareXSLTInInterceptor xsltIn
                = new HttpAwareXSLTInInterceptor(xsltPath);
            xsltIn.setMsgType(msgType);
            xsltIn.setAppliesToType(appliesToType);
            xsltIn.handleMessage(message);
        }
    }
View Full Code Here


        }
    }

    private void initializeXslt(InterceptorProvider provider) {
        if (path != null) {
            HttpAwareXSLTInInterceptor in = new HttpAwareXSLTInInterceptor(path);
            in.setAppliesToType(appliesTo);
            in.setMsgType(messageType);
            provider.getInInterceptors().add(in);

            HttpAwareXSLTOutInterceptor out = new HttpAwareXSLTOutInterceptor(path);
            out.setAppliesToType(appliesTo);
            out.setMsgType(messageType);
View Full Code Here

TOP

Related Classes of org.talend.esb.policy.transformation.interceptor.xslt.HttpAwareXSLTInInterceptor

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.