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

Examples of org.jitterbit.integration.data.entity.operation.OperationFunctionInfo


        DataStructure in = extractInputStructure(op);
        return inputStruct.equals(in);
    }

    private DataStructure extractInputStructure(Operation op) {
        OperationFunctionInfo info = new OperationFunctionInfo(op);
        Function first = info.getFirstFunction();
        if (first instanceof Transformation) {
            return ((Transformation) first).getInputStructure();
        }
        return null;
    }
View Full Code Here


        setTarget(dataLookup.getEntity(tgtId, Target.class));
    }

    private void resetTransformation() {
        Transformation tf = null;
        OperationFunctionInfo info = new OperationFunctionInfo(operation);
        Function first = info.getFirstFunction();
        if (first instanceof Transformation) {
            tf = (Transformation) first;
        }
        setTransformation(tf);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.OperationFunctionInfo

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.