Package org.jitterbit.integration.data.entity

Examples of org.jitterbit.integration.data.entity.Transformation$StructureListener


        return false;
    }

    private boolean isFirstTransformationCorrect(Operation sibling) {
        OperationPipeline pipeline = sibling.getPipeline();
        Transformation tf = getFirstTransformation(pipeline);
        return (tf != null ? checkInputStructure(tf) : false);
    }
View Full Code Here


        }
        return false;
    }

    private boolean checkLastTransformationInTransformationTypeOperation(Operation last) {
        Transformation tf = getFirstTransformation(last.getPipeline());
        return checkLastTransformation(tf);
    }
View Full Code Here

        Transformation tf = getFirstTransformation(last.getPipeline());
        return checkLastTransformation(tf);
    }

    private boolean checkLastTransformationInWebServiceTypeOperation(Operation last) {
        Transformation tf = getLastTransformation(last.getPipeline());
        return checkLastTransformation(tf);
    }
View Full Code Here

    private Transformation[] extractTransformations(Operation op, IntegrationEntityLookup lookup) {
        Transformation[] tfs = new Transformation[2];
        OperationFunctionInfo info = new OperationFunctionInfo(op, lookup);
        for (Function func : info.getFunctions()) {
            if (func instanceof Transformation) {
                Transformation tf = (Transformation) func;
                if (tfs[0] == null) {
                    tfs[0] = tf;
                } else {
                    tfs[1] = tf;
                    break;
View Full Code Here

                collectScriptedLinks(a, sc);
            }
        }

        private void addTransformation(TransformationActivity a) {
            Transformation tf = a.getContent();
            if (tf != null) {
                collectScriptedLinks(a, tf);
            }
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.Transformation$StructureListener

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.