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

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


            parent.addItem(op);
        }

        private void restoreSchedule(Persistor p, Folder parent) {
            String name = restoreName(p);
            ScheduleId id = restoreId(p, ScheduleId.class);
            Schedule schedule = new Schedule(id, name);
            schedule.setEnabled(p.getBoolean(ENABLED));
            parent.addItem(schedule);
        }
View Full Code Here


    public ScheduleId getScheduleId() {
        return scheduleId;
    }

    public void setScheduleId(ScheduleId scheduleId) {
        ScheduleId old = this.scheduleId;
        this.scheduleId = scheduleId;
        fireChange(SCHEDULE_PROPERTY, old, scheduleId);
    }
View Full Code Here

        replaceSiblings();
        replacePipeline();
    }

    private void replaceSchedule() {
        ScheduleId id = op.getScheduleId();
        if (id != null) {
            Schedule replacement = (Schedule) service.getReplacement(id);
            op.setSchedule(replacement);
        }
    }
View Full Code Here

            }
        }
    }

    private void collectScheduleLink() {
        ScheduleId schedId = operation.getScheduleId();
        if (schedId != null) {
            Schedule sched = dataLookup.getEntity(schedId, Schedule.class);
            if (sched != null) {
                links.add(new OperationScheduleLink(sched, operation));
            } else {
View Full Code Here

TOP

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

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.