Searched refs:schedule (Results 1 - 25 of 161) sorted by relevance

1234567

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java31 /** The class to be used to describe the task schedule. */
56 * Returns a schedule instance that launches the task now.
57 * @return a schedule instance that launches the task now.
61 ScheduleType schedule = new ScheduleType();
62 schedule.type = Type.LAUNCH_NOW;
63 schedule.toString = schedule.calculateToString();
64 schedule.hashCode = schedule.calculateHashCode();
65 return schedule;
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java31 * The class to be used to describe the task schedule.
67 * Returns a schedule instance that launches the task now.
68 * @return a schedule instance that launches the task now.
72 ScheduleType schedule = new ScheduleType();
73 schedule.type = Type.LAUNCH_NOW;
74 schedule.toString = schedule.calculateToString();
75 schedule.hashCode = schedule.calculateHashCode();
76 return schedule;
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java32 * The class to be used to describe the task schedule.
68 * Returns a schedule instance that launches the task now.
69 * @return a schedule instance that launches the task now.
73 ScheduleType schedule = new ScheduleType();
74 schedule.type = Type.LAUNCH_NOW;
75 schedule.toString = schedule.calculateToString();
76 schedule.hashCode = schedule.calculateHashCode();
77 return schedule;
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java32 * The class to be used to describe the task schedule.
68 * Returns a schedule instance that launches the task now.
69 * @return a schedule instance that launches the task now.
73 ScheduleType schedule = new ScheduleType();
74 schedule.type = Type.LAUNCH_NOW;
75 schedule.toString = schedule.calculateToString();
76 schedule.hashCode = schedule.calculateHashCode();
77 return schedule;
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java31 * The class to be used to describe the task schedule.
67 * Returns a schedule instance that launches the task now.
68 * @return a schedule instance that launches the task now.
72 ScheduleType schedule = new ScheduleType();
73 schedule.type = Type.LAUNCH_NOW;
74 schedule.toString = schedule.calculateToString();
75 schedule.hashCode = schedule.calculateHashCode();
76 return schedule;
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DScheduleType.java32 * The class to be used to describe the task schedule.
68 * Returns a schedule instance that launches the task now.
69 * @return a schedule instance that launches the task now.
73 ScheduleType schedule = new ScheduleType();
74 schedule.type = Type.LAUNCH_NOW;
75 schedule.toString = schedule.calculateToString();
76 schedule.hashCode = schedule.calculateHashCode();
77 return schedule;
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheCleanUpScheduler.java43 pool.schedule(SPCache.requestHash, nextRun);
44 pool.schedule(SPCache.responseHash, nextRun);
45 pool.schedule(SPCache.mniRequestHash, nextRun);
46 pool.schedule(SPCache.relayStateHash, nextRun);
47 pool.schedule(SPCache.logoutRequestIDHash, nextRun);
48 pool.schedule(SPCache.reqParamHash, nextRun);
49 pool.schedule(SPCache.authnRequestHash, nextRun);
50 pool.schedule(SPCache.fedAccountHash, nextRun);
51 pool.schedule(SPCache.assertionByIDCache, nextRun);
52 pool.schedule(IDPCach
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheCleanUpScheduler.java46 pool.schedule(SPCache.requestHash, nextRun);
47 pool.schedule(SPCache.responseHash, nextRun);
48 pool.schedule(SPCache.mniRequestHash, nextRun);
49 pool.schedule(SPCache.relayStateHash, nextRun);
50 pool.schedule(SPCache.logoutRequestIDHash, nextRun);
51 pool.schedule(SPCache.reqParamHash, nextRun);
52 pool.schedule(SPCache.authnRequestHash, nextRun);
53 pool.schedule(SPCache.fedAccountHash, nextRun);
54 pool.schedule(SPCache.assertionByIDCache, nextRun);
55 pool.schedule(IDPCach
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/scheduling/
H A DSchedulerView.js62 tempPromises.then(_.bind(function (schedule) {
63 if (schedule.invokeService.indexOf("sync") >= 0 && schedule.invokeContext.mapping === this.model.mapping.name) {
67 enabled: schedule.enabled,
68 schedule: schedule.schedule,
69 persisted: schedule.persisted,
70 misfirePolicy: schedule.misfirePolicy
73 "invokeService": schedule
[all...]
H A DLiveSyncView.js72 tempPromises.then(_.bind(function (schedule) {
75 if (schedule.invokeService.indexOf("provisioner") >= 0 && schedule.enabled && schedule.invokeContext.source === this.model.mapping.source) {
76 seconds = schedule.schedule.substr(schedule.schedule.indexOf("/") + 1);
86 // This is a recon schedule
87 } else if (schedule
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DSchedulerDelegate.js40 obj.saveSchedule = function(scheduleId, schedule) {
44 data: JSON.stringify(schedule)
55 obj.addSchedule = function(schedule) {
59 data: JSON.stringify(schedule)
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java49 * A class used as component displaying the string representation of a schedule
55 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
77 * Returns the schedule represented by this panel.
78 * @return the schedule represented by this panel.
82 return schedule;
86 * Sets the schedule represented by this panel.
87 * @param schedule the schedule represented by this panel.
89 public void setSchedule(ScheduleType schedule) argument
91 this.schedule
142 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java48 * A class used as component displaying the string representation of a schedule
54 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
76 * Returns the schedule represented by this panel.
77 * @return the schedule represented by this panel.
81 return schedule;
85 * Sets the schedule represented by this panel.
86 * @param schedule the schedule represented by this panel.
88 public void setSchedule(ScheduleType schedule) argument
90 this.schedule
141 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java49 * A class used as component displaying the string representation of a schedule
55 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
77 * Returns the schedule represented by this panel.
78 * @return the schedule represented by this panel.
82 return schedule;
86 * Sets the schedule represented by this panel.
87 * @param schedule the schedule represented by this panel.
89 public void setSchedule(ScheduleType schedule) argument
91 this.schedule
142 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java48 * A class used as component displaying the string representation of a schedule
54 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
76 * Returns the schedule represented by this panel.
77 * @return the schedule represented by this panel.
81 return schedule;
85 * Sets the schedule represented by this panel.
86 * @param schedule the schedule represented by this panel.
88 public void setSchedule(ScheduleType schedule) argument
90 this.schedule
141 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java49 * A class used as component displaying the string representation of a schedule
55 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
77 * Returns the schedule represented by this panel.
78 * @return the schedule represented by this panel.
82 return schedule;
86 * Sets the schedule represented by this panel.
87 * @param schedule the schedule represented by this panel.
89 public void setSchedule(ScheduleType schedule) argument
91 this.schedule
142 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/components/
H A DScheduleSummaryPanel.java48 * A class used as component displaying the string representation of a schedule
54 private ScheduleType schedule = ScheduleType.createLaunchNow(); field in class:ScheduleSummaryPanel
76 * Returns the schedule represented by this panel.
77 * @return the schedule represented by this panel.
81 return schedule;
85 * Sets the schedule represented by this panel.
86 * @param schedule the schedule represented by this panel.
88 public void setSchedule(ScheduleType schedule) argument
90 this.schedule
141 updateLabel(ScheduleType schedule) argument
[all...]
/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java47 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:AuditRequestContextPropagatingScheduledExecutorService
48 return ((ScheduledExecutorService) delegate).schedule(wrap(command), delay, unit);
55 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { method in class:AuditRequestContextPropagatingScheduledExecutorService
56 return ((ScheduledExecutorService) delegate).schedule(wrap(callable), delay, unit);
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java47 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:AuditRequestContextPropagatingScheduledExecutorService
48 return ((ScheduledExecutorService) delegate).schedule(wrap(command), delay, unit);
55 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { method in class:AuditRequestContextPropagatingScheduledExecutorService
56 return ((ScheduledExecutorService) delegate).schedule(wrap(callable), delay, unit);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DScheduler.js53 * schedule - quartz string
82 console.error("The specified schedule type does not exist.");
119 defaultCronValue = this.cron.cron("value", this.cron.cron("convertCronVal", this.defaults.schedule));
126 this.$el.find(".complexExpression").val(this.defaults.schedule);
215 SchedulerDelegate.specificSchedule(this.scheduleId).then(_.bind(function(schedule) {
216 schedule.enabled = this.$el.find(".enabled").is(":checked");
217 schedule.misfirePolicy = this.$el.find(".misfirePolicy").val();
218 schedule.persisted = this.$el.find(".persisted").is(":checked");
221 schedule.schedule
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/resources/css/config/
H A DscheduleView.less17 .schedule-input-body {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/connector/
H A DEditConnectorView.js426 addLiveSync: function(schedule) {
460 // Get all schedule IDS
465 // Get the schedule of each ID
470 _.each(schedulerPromises, function (schedule) {
471 schedule = schedule.responseJSON;
477 if (schedule.invokeContext.action === "liveSync") {
479 sourcePieces = schedule.invokeContext.source.split("/");
482 this.$el.find(".sources option[value='" + schedule.invokeContext.source + "']").remove();
488 enabled: schedule
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java227 public void schedule(TaskRunnable task, Date time) throws method in class:TimerPool
287 schedule(task, time);
303 public void schedule(TaskRunnable task, long delay) throws method in class:TimerPool
305 schedule(task, new Date(System.currentTimeMillis() + delay));
436 pool.schedule(runTask, new Date(
466 pool.schedule(runTask, new Date(
511 pool.schedule(runTask, new Date(
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java227 public void schedule(TaskRunnable task, Date time) throws method in class:TimerPool
287 schedule(task, time);
303 public void schedule(TaskRunnable task, long delay) throws method in class:TimerPool
305 schedule(task, new Date(currentTimeMillis() + delay));
436 pool.schedule(runTask, new Date(
466 pool.schedule(runTask, new Date(
511 pool.schedule(runTask, new Date(
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCuller.java113 SystemTimerPool.getTimerPool().schedule(this, new Date(timeoutTime));
157 SystemTimerPool.getTimerPool().schedule(this, new Date(expectedTime));
184 // schedule at the max session time
190 SystemTimerPool.getTimerPool().schedule(this, new Date(expectedTime));

Completed in 101 milliseconds

1234567