Examples of OperationId


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

   
    private final GraphLayoutStore layoutStore;
   
    public DeleteLayoutFileAction(OperationGraphController controller) {
        super("Delete Layout File...", CommonIcons.DELETE_16);
        OperationId opId = controller.getGraph().getModel().getStartNode().getOperationId();
        Operation operation = controller.getEntityLookup().getEntity(opId, Operation.class);
        this.layoutStore = new GraphLayoutFileStore(operation);
    }
View Full Code Here

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

    private EmailMessageId emailId;

    @Before
    public void setup() {
        opId = new OperationId();
        expression = createFunctionCall("RunOperation", opId);
        expression += ";";
        sourceId = new SourceId();
        expression += createFunctionCall("ReadFile", sourceId);
        expression += ";";
View Full Code Here

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

        ops.addOperation(createAsynchOp());
        return ops;
    }

    private TriggeredOperation createAsynchOp() {
        return new TriggeredOperation(new OperationId(), null, OperationRunMode.ASYNCHRONOUS, false);
    }
View Full Code Here

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

        endpoint.setTriggeredOperations(ops);
        verifyValidation(ValidationStatus.VALID);
    }

    private TriggeredOperation createSynchOp(boolean responseGenerator) {
        return new TriggeredOperation(new OperationId(), null, OperationRunMode.SYNCHRONOUS, responseGenerator);
    }
View Full Code Here

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

    public static final class Factory extends AbstractFactory<TestOperationResult> {

        @Override
        public TestOperationResult restore(Persistor p) {
            OperationId opId = (OperationId) restoreEntityId(p, OP_ID, EntityType.Operation);
            TransformationId transId = (TransformationId) restoreEntityId(p, TRANS_ID, EntityType.Transformation);
            long timestamp = restoreTimestamp(p);
            Outcome outcome = restoreOutcome(p);
            String details = restoreDetails(p);
            return new TestOperationResult(opId, transId, timestamp, outcome, details);
View Full Code Here

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

    /**
     * Checks if these <code>TriggeredOperations</code> contains a given <code>Operation</code>.
     *
     */
    public boolean contains(Operation op) {
        OperationId opId = op.getID();
        for (Set<TriggeredOperation> s : operations.values()) {
            for (TriggeredOperation o : s) {
                if (o.getOperationId().equals(opId)) {
                    return true;
                }
View Full Code Here

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

     */
    public OperationId getSuccessOperationId() {
        String id = getProperty(SUCCESS_OPERATION);
        if (id != null && id.length() > 0) {
            try {
                return new OperationId(id);
            } catch (IllegalArgumentException e) {
                // This should never happen, but if it does we will just
                // return null.
            }
        }
View Full Code Here

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

     *            operation should be chained to this operation.
     * @see #getSuccessOperationId()
     * @see #setSuccessOperation(Operation)
     */
    public void setSuccessOperationId(OperationId id) {
        OperationId old = getSuccessOperationId();
        if (!KongaID.areEqual(id, old)) {
            setProperty(SUCCESS_OPERATION, id);
            firePropertyChange(SUCCESS_OPERATION, old, id);
        }
    }
View Full Code Here

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

     */
    public OperationId getFailureOperationId() {
        String id = getProperty(FAILURE_OPERATION);
        if (id != null && id.length() > 0) {
            try {
                return new OperationId(id);
            } catch (IllegalArgumentException e) {
                // This should never happen, but if it does we will just return null.
            }
        }
        return null;
View Full Code Here

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

     *            failure operation.
     * @see #getFailureOperationId()
     * @see #setFailureOperation(Operation)
     */
    public void setFailureOperationId(OperationId id) {
        OperationId old = getFailureOperationId();
        if (!KongaID.areEqual(old, id)) {
            setProperty(FAILURE_OPERATION, id);
            firePropertyChange(FAILURE_OPERATION, old, id);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.