Examples of WebServiceCallActivity


Examples of org.jitterbit.integration.data.entity.operation.pipeline.WebServiceCallActivity

    }

    @Override
    public void selectActivity(OperationGraphController controller, OperationWrapperNode opNode) {
        OperationPipeline pipeline = opNode.getPipeline();
        WebServiceCallActivity activity = getDataObject();
        WebServiceCallContentProvider p = new WebServiceCallContentProvider(
                        controller.getProject(),
                        pipeline.getType().getWebServiceCallActivityFilterProvider(pipeline),
                        ActivityContentAcceptor.create(controller, opNode, activity));
        controller.configureContentProvider(p, activity, opNode);
View Full Code Here

Examples of org.jitterbit.integration.data.entity.operation.pipeline.WebServiceCallActivity

    @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);
View Full Code Here

Examples of org.jitterbit.integration.data.entity.operation.pipeline.WebServiceCallActivity

    /**
     * Sets the <code>WebServiceCall</code> activity.
     *
     */
    public void setWebServiceCall(WebServiceCall wsCall) {
        WebServiceCallActivity a = getWebServiceCallActivity();
        a.setContent(wsCall);
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.operation.pipeline.WebServiceCallActivity

        TargetActivity ws_target = TargetActivity.newInstance(lookup.getEntity(op.getTargetId(), Target.class),
                        WebServiceCallTemplate.TARGET);
        WebServiceCallChain chain = new WebServiceCallChain(op, lookup);
        TransformationActivity request = TransformationActivity.newInstance(chain.getRequestTransformation(),
                        WebServiceCallTemplate.REQUEST);
        WebServiceCallActivity ws = WebServiceCallActivity.newInstance(chain.getWebServiceCall(),
                        WebServiceCallTemplate.WEBSERVICECALL);
        TransformationActivity response = TransformationActivity.newInstance(chain.getResponseTransformation(),
                        WebServiceCallTemplate.RESPONSE);
        List<PipelineActivity> activities = Lists.newArrayList();
        activities.add(ws_source);
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.