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

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


        }
        return true;
    }

    private Source getSource() {
        OperationPipelineBrowser browser = new OperationPipelineBrowser(opNode.getPipeline());
        return browser.getSource();
    }
View Full Code Here


    public boolean isSchedulable() {
        return pipeline.getType().isSchedulable() && isSourceSchedulable();
    }

    private boolean isSourceSchedulable() {
        OperationPipelineBrowser browser = new OperationPipelineBrowser(pipeline);
        Source src = browser.getSource();
        return src != SystemSource.SOURCE_FROM_PREVIOUS_OPERATION && src != SystemSource.FROM_HTTP_ENDPOINT;
    }
View Full Code Here

        super(entityLookup);
    }

    @Override
    public void complete(OperationPipeline pipeline, PipelineActivity a) {
        OperationPipelineBrowser browser = new TransformationPipelineBrowser(pipeline);
        Object content = a.getContent();
        if (!(content instanceof Transformation)) {
            return;
        }
        Transformation inserted = (Transformation) content;
View Full Code Here

   
    private final OperationPipelineBrowser browser;
   
    public ArchivePipelineValidator(Operation operation, OperationPipeline pipeline, ValidationMessageCollector collector) {
        super(operation, pipeline, collector);
        browser = new OperationPipelineBrowser(pipeline);
    }
View Full Code Here

TOP

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

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.