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

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


            }
        }
    }

    private void collectOperationLinks() {
        OperationId successOpId = operation.getSuccessOperationId();
        OperationId failureOpId = operation.getFailureOperationId();
        if (successOpId == null && failureOpId == null) {
            return;
        }
        OperationOperationLinkFactory linkFactory = new OperationOperationLinkFactory(operation, dataLookup);
        if (KongaID.areEqual(successOpId, failureOpId)) {
View Full Code Here


        operation = op;
        this.dataLookup = dataLookup;
    }

    public EntityLink createFailureLink() {
        OperationId opId = operation.getFailureOperationId();
        if (opId != null) {
            Operation op = dataLookup.getEntity(opId, Operation.class);
            if (op != null) {
                return OperationOperationLink.createFailureLink(op, operation);
            }
View Full Code Here

        }
        return null;
    }

    public EntityLink createSuccessAndFailureLink() {
        OperationId opId = operation.getSuccessOperationId();
        if (opId != null) {
            Operation op = dataLookup.getEntity(opId, Operation.class);
            if (op != null) {
                return OperationOperationLink.createSuccessAndFailureLink(op, operation);
            }
View Full Code Here

        }
        return null;
    }

    public EntityLink createSuccessLink() {
        OperationId opId = operation.getSuccessOperationId();
        if (opId != null) {
            Operation op = dataLookup.getEntity(opId, Operation.class);
            if (op != null) {
                return OperationOperationLink.createSuccessLink(op, operation);
            }
View Full Code Here

TOP

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

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.