Package org.jitterbit.integration.data.entity.id

Examples of org.jitterbit.integration.data.entity.id.TransformationId


public class TransformationFunctionCollector implements OperationFunctionCollector {

    @Override
    public OperationFunctions collect(OperationPipeline pipeline) {
        List<Function> funcs = Lists.newArrayList();
        TransformationId tfId = null;
        TransformationPipelineBrowser browser = new TransformationPipelineBrowser(pipeline);
        Transformation tf = browser.getTransformation();
        if (tf != null) {
            funcs.add(tf);
            tfId = tf.getID();
View Full Code Here


public class WebServiceFunctionCollector implements OperationFunctionCollector {

    @Override
    public OperationFunctions collect(OperationPipeline pipeline) {
        List<Function> funcs = Lists.newArrayList();
        TransformationId tfId = null;
        WebServicePipelineBrowser browser = new WebServicePipelineBrowser(pipeline);
        Transformation request = browser.getRequest();
        if (request != null) {
            funcs.add(request);
            tfId = request.getID();
View Full Code Here

            case SOURCE:
                return new SourceId(contentId);
            case TARGET:
                return new TargetId(contentId);
            case TRANSFORMATION:
                return new TransformationId(contentId);
            case WEBSERVICECALL:
                return new WebServiceCallId(contentId);
            case BULK_LOAD:
                return new SalesforceBulkLoadId(contentId);
            default:
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.id.TransformationId

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.