Examples of HostedWebServiceCallChain


Examples of org.jitterbit.integration.data.entity.operation.HostedWebServiceCallChain

*/
public class HostedWebServicePipelineFactory implements OperationPipelineFactory {

    @Override
    public OperationPipeline createPipeline(Operation op, IntegrationEntityLookup lookup) {
        HostedWebServiceCallChain hostedChain = new HostedWebServiceCallChain(op, lookup);
        TransformationActivity first_trans = TransformationActivity.newInstance(hostedChain.getFirstTransformation(),
                HostedWebServiceCallTemplate.FIRST_TRANSFORMATION);
        WebServiceCallActivity hws = WebServiceCallActivity.newInstance(hostedChain.getWebServiceCall(),
                HostedWebServiceCallTemplate.WEBSERVICECALL);
        TransformationActivity second_trans = TransformationActivity.newInstance(hostedChain.getSecondTransformation(),
                HostedWebServiceCallTemplate.SECOND_TRANSFORMATION);
        List<PipelineActivity> activities = Lists.newArrayList();
        activities.add(hws);
        activities.add(first_trans);
        activities.add(second_trans);
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.