Package org.jitterbit.integration.data.function

Examples of org.jitterbit.integration.data.function.Function


        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


    }

    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

        }
    }

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

    }

    private void validateFunctionJoin(DataStructure input, Operation previousOp) {
        assert (input != null) : "This method should not be called with a null input structure";
        OperationFunctionInfo info = new OperationFunctionInfo(previousOp);
        Function last = info.getLastNonPassThroughFunction();
        if (last != null) {
            DataStructure output = last.getOutputStructure();
            if (output != null && input.isCompatibleWith(output)) {
                return;
            }
        }
        fatal("The source structure of this operation is not compatible with the target structure of the "
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.function.Function

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.