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

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


        }

        @Override
        public void actionPerformed(ActionEvent evt) {
            JCheckBoxMenuItem check = (JCheckBoxMenuItem) evt.getSource();
            SchedulePolicy policy = check.isSelected() ? SchedulePolicy.STRICT : SchedulePolicy.YIELD_IF_STILL_RUNNING;
            controller.setSchedulePolicy(opNode, policy);
        }
View Full Code Here


            OperationType type = DefaultOperationTypePreference.get();
            op.setOperationType(type);
            OperationPipeline pipeline = type.createNewTemplate();
            op.setPipeline(pipeline);
        }
        SchedulePolicy sp = DefaultSchedulePolicyPreference.get();
        op.setSchedulePolicy(sp);
        SourceHistoryOption sourceHistoryOption = new SourceHistoryOption(DefaultSourceHistorySettingPreference.INSTANCE.get());
        sourceHistoryOption.applyTo(op);
    }
View Full Code Here

     * This method fires a <code>PropertyChangeEvent</code> for the property
     * {@link #SCHEDULE_POLICY}.
     *
     */
    public void setSchedulePolicy(SchedulePolicy p) {
        SchedulePolicy old = getSchedulePolicy();
        setProperty(SCHEDULE_POLICY, p.getId());
        if (old != p) {
            firePropertyChange(SCHEDULE_POLICY, old, p);
        }
    }
View Full Code Here

    public SchedulePolicy getSchedulePolicy() {
        return schedulePolicy;
    }

    public void setSchedulePolicy(SchedulePolicy p) {
        SchedulePolicy old = schedulePolicy;
        schedulePolicy = p;
        fireChange(SCHEDULE_POLICY_PROPERTY, old, p);
    }
View Full Code Here

TOP

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

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.