Package org.jitterbit.integration.data.entity.operation.pipeline

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


    public static IntegrationProject project = IntegrationProject.createNewProject("Test");
   
    public static Operation createStartOperation() {
        Operation op = new Operation("Start");
        project.insertEntityUnderRoot(op);
        TransformationTemplate template = new TransformationTemplate();
        op.setPipeline(template.getPipeline());
        lookup.addItem(op);
        return op;
    }
View Full Code Here


    }
   
    public static Operation createOperation(String name) {
        Operation op = new Operation(name);
        project.insertEntityUnderRoot(op);
        TransformationTemplate template = new TransformationTemplate();
        op.setPipeline(template.getPipeline());
        lookup.addItem(op);
        return op;
    }
View Full Code Here

        return RunnableStatus.RUNNABLE;
    }

    @Override
    public OperationPipeline createNewTemplate() {
        return new TransformationTemplate().getPipeline();
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.pipeline.TransformationTemplate

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.