Class Schedule
- All Implemented Interfaces:
Serializable
The core part of the Schedule is the Recurrence
class that
provides occurrence based on the defined recurrence pattern. Schedule
allows adding dates to be explicitly included for generating occurrences
in addition to the one generated by the recurrence pattern.
Note that more than one Recurrence
can also be supplied with
a Schedule with the help of RecurrenceSet
class. The resulting
occurrences for the schedule would be the union of occurrences generated
by the individual recurrences present in RecurrenceSet
.
It is also possible to exclude date/times instances from the list of
occurrences a Schedule
generates. Such exclusions can be specified
in two mode, by explicitly providing a list of dates to an instance of
Schedule
or by referencing to a named ExclusionsDefinition
.
An example would be an ExclusionsDefinition that contains the list of
holidays for which the Schedule
must skip the occurrences if
generated.
The start and end date/times if specified in the contained
Recurrence
only apply to the occurrences generated by the
recurrence pattern. Any additional dates explicitly added to the
Schedule
can fall before the start or after the end date
specified.
Example
Schedule to run every monday at 10:00 am plus on 10th
of July 2006, but exclude the 15th May 2006.
Recurrence recur = new Recurrence(RecurrenceFields.FREQUENCY.WEEKLY); recur.addDayOfWeek(RecurrenceFields.DAY_OF_WEEK.MONDAY); recur.setRecurTime(RecurrenceFields.TIME_OF_DAY.valueOf(10, 0, 0)); ExplicitDate july10 = new ExplicitDate(RecurrenceFields.YEAR.valueOf(2006), RecurrenceFields.MONTH_OF_YEAR.JULY RecurrenceFields.DAY_OF_MONTH.valueOf(10)); ExplicitDate may15 = new ExplicitDate(RecurrenceFields.YEAR.valueOf(2006), RecurrenceFields.MONTH_OF_YEAR.MAY, RecurrenceFields.DAY_OF_MONTH.valueOf(15)); Schedule schedule = new Schedule("everyMonday", "Weekly Schedule", recur); schedule.addInclusionDate(july10); schedule.addExclusionDate(may15);
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Maximum size of the list of occurences returned by schedule. -
Constructor Summary
ConstructorsConstructorDescriptionSchedule
(String name, String displayNameKey, String descriptionKey, Collection<ExplicitDate> dates, String[] resourceBundleIDs) Constructs a new instance with the given set of explicit dates and associate resource bundles.Schedule
(String name, String displayNameKey, String descriptionKey, Recurrence recur, String[] resourceBundleIDs) Constructs a new instance with the given recurrence and associate resource bundles.Schedule
(String name, String displayNameKey, String descriptionKey, RecurrenceSet recurSet, String[] resourceBundleIDs) Constructs a new instance with the given RecurrenceSet and associate resource bundles.Schedule
(String name, String description, Collection<ExplicitDate> dates) Constructs a new instance with the given set of explicit dates.Schedule
(String name, String description, Recurrence recur) Constructs a new instance with the given recurrence.Schedule
(String name, String description, RecurrenceSet recurSet) Constructs a new instance with the given RecurrenceSet. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addExclusion
(MetadataObjectId objectId) Adds a reference of an instance of ExclusionsDefinition in this Schedule object.void
addExclusionDate
(ExplicitDate date) Adds an explicit date to be excluded from occurrences in this Schedule object.void
addInclusionDate
(ExplicitDate date) Adds an explicit date to be included for occurrences in this Schedule object.boolean
Compares an object for equality with this Schedule object.Gets the intended type of this metadata.Gets the list of dates excluded for occurrences in this Schedule object.Gets the list of ExclusionsDefinition metadata ids that are referenced by this object.Gets the list of explicit dates that are included for occurrences in this Schedule object.Gets the recurrence object of this schedule instance.Gets the RecurrenceSet object of this schedule instance.Gets the TimeZone set for this Schedule object.Generates a list of possible occurrences of this Schedule object starting with the given time up to the specified count.Generates a list of possible occurrences of this Schedule object within a given time period up to the default limit of 300.Generates a list of possible occurrences of this Schedule object within a given time period.void
removeExclusion
(MetadataObjectId objectId) Removes the given reference of ExclusionsDefinition from this Schedule object.void
Removes an explicit date from the list of dates excluded for occurrences in this Schedule object.void
Removes an explicit date from list of included dates of this Schedule object.void
setExclusionDates
(Collection<ExplicitDate> dates) Sets the list of dates excluded for occurrences in this Schedule object.void
setInclusionDates
(Collection<ExplicitDate> dates) Sets the list of dates to be included for occurrences in this Schedule.void
setRecurrence
(Recurrence recur) Sets the recurrence for this schedule instance.void
setRecurrenceSet
(RecurrenceSet recurSet) Sets the RecurrenceSet for this schedule instance.void
setTimeZone
(TimeZone tz) Sets or clears the TimeZone for this Schedule object.toDisplayString
(Locale locale) Enterprise Manager support to acquire a localized string value.toString()
Gets a String representation for this Schedule object.Methods inherited from class oracle.as.scheduler.BaseMetadata
getDescription, getDescriptionKey, getDisplayName, getDisplayNameKey, getMetadataObjectId, getName, getResourceBundles, hashCode, setDescription, setDescriptionKey, setDisplayName, setDisplayNameKey, setResourceBundles, validate
-
Field Details
-
DEFAULT_LIST_LIMIT
public static final int DEFAULT_LIST_LIMITMaximum size of the list of occurences returned by schedule. Initialized to 300.- See Also:
-
-
Constructor Details
-
Schedule
Constructs a new instance with the given recurrence.- Parameters:
name
- name of the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.description
- an optional description.recur
- an instance of Recurrence object
-
Schedule
public Schedule(String name, String displayNameKey, String descriptionKey, Recurrence recur, String[] resourceBundleIDs) Constructs a new instance with the given recurrence and associate resource bundles.- Parameters:
name
- name of the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.recur
- an instance of Recurrence objectresourceBundleIDs
- an array of resource bundle id. Optional.
-
Schedule
Constructs a new instance with the given RecurrenceSet.- Parameters:
name
- name of the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.description
- an optional description.recurSet
- an instance of RecurrenceSet object
-
Schedule
public Schedule(String name, String displayNameKey, String descriptionKey, RecurrenceSet recurSet, String[] resourceBundleIDs) Constructs a new instance with the given RecurrenceSet and associate resource bundles.- Parameters:
name
- name of the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.recurSet
- an instance of RecurrenceSet objectresourceBundleIDs
- an array of resource bundle id. Optional.
-
Schedule
Constructs a new instance with the given set of explicit dates.- Parameters:
name
- the name for the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.description
- an optional description.dates
- a collection explicit dates for occurrences.
-
Schedule
public Schedule(String name, String displayNameKey, String descriptionKey, Collection<ExplicitDate> dates, String[] resourceBundleIDs) Constructs a new instance with the given set of explicit dates and associate resource bundles.- Parameters:
name
- name of the new instance. It cannot be null. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.dates
- a collection explicit dates for occurrences.resourceBundleIDs
- an array of resource bundle id.
-
-
Method Details
-
getRecurrence
Gets the recurrence object of this schedule instance.- Returns:
- recurrence of this Schedule instance.
-
setRecurrence
Sets the recurrence for this schedule instance.- Parameters:
recur
- Recurrence object that should be used by this Schedule instance.
-
getRecurrenceSet
Gets the RecurrenceSet object of this schedule instance.- Returns:
- RecurrenceSet of this object.
-
setRecurrenceSet
Sets the RecurrenceSet for this schedule instance.- Parameters:
recurSet
- RecurrenceSet object that should be used.
-
addInclusionDate
Adds an explicit date to be included for occurrences in this Schedule object.- Parameters:
date
- the explicit date to be included.
-
removeInclusionDate
Removes an explicit date from list of included dates of this Schedule object.- Parameters:
date
- the explicit date to be removed from the list of included dates.
-
setInclusionDates
Sets the list of dates to be included for occurrences in this Schedule.- Parameters:
dates
- collection of explicit date to be included.
-
getInclusionDates
Gets the list of explicit dates that are included for occurrences in this Schedule object.- Returns:
- collection of explicit dates that are included for occurrences in this object.
-
addExclusionDate
Adds an explicit date to be excluded from occurrences in this Schedule object.- Parameters:
date
- the explicit date to be excluded.
-
removeExclusionDate
Removes an explicit date from the list of dates excluded for occurrences in this Schedule object.- Parameters:
date
- the explicit date to be removed from the list of excluded dates.
-
setExclusionDates
Sets the list of dates excluded for occurrences in this Schedule object.- Parameters:
dates
- the list of explicit date to be excluded.
-
getExclusionDates
Gets the list of dates excluded for occurrences in this Schedule object.- Returns:
- list of explicit date excluded for occurrences in this object.
-
addExclusion
Adds a reference of an instance of ExclusionsDefinition in this Schedule object.- Parameters:
objectId
- the identifier of the ExclusionsDefinition to be added.
-
removeExclusion
Removes the given reference of ExclusionsDefinition from this Schedule object.- Parameters:
objectId
- identifier of the ExclusionsDefinition to be removed.
-
getExclusions
Gets the list of ExclusionsDefinition metadata ids that are referenced by this object.- Returns:
- the list of identifiers for the ExclusionsDefinition object referred by this object.
-
getTimeZone
Gets the TimeZone set for this Schedule object. If a Schedule object has as TimeZone set, it operates with respect to the set TimeZone. Otherwise the Schedule is TimeZone agnostic.- Returns:
- TimeZone set in this Schedule object. Null otherwise.
-
setTimeZone
Sets or clears the TimeZone for this Schedule object. A null TimeZone make the Schedule time zone agnostic.- Parameters:
tz
- the TimeZone to be set for this object. NULL if the TimeZone needs to be cleared/unset.
-
list
Generates a list of possible occurrences of this Schedule object within a given time period up to the default limit of 300.- Parameters:
begin
- the start date/time for listing possible occurrences, inclusive, not null.end
- the end date/time for listing possible occurrences, inclusive, not null.- Returns:
- a collection of Calendar instances representing possible occurrences. null if no occurrences are possible in the given time period. The maximum number of results are limited by the property DEFAULT_LIST_LIMIT of 300 occurrences.
- Throws:
IllegalArgumentException
-
list
Generates a list of possible occurrences of this Schedule object starting with the given time up to the specified count.- Parameters:
begin
- the start date/time for listing occurrences, inclusive, not null.count
- the maximum number of occurrences to be listed.- Returns:
- a collection of Calendar instances representing possible occurrences up to the specified count, or null if no occurrences are possible.
- Throws:
IllegalArgumentException
-
list
public Collection<Calendar> list(Calendar begin, Calendar end, int limit) throws IllegalArgumentException Generates a list of possible occurrences of this Schedule object within a given time period.- Parameters:
begin
- the start date/time for listing possible occurrences, inclusive, not null.end
- the end date/time for listing possible occurrences, inclusive.limit
- the maximum number of occurrences to be listed. The limit has to be a positive integer or zero. A zero limit results an empty list.- Returns:
- a collection of Calendar instances representing possible occurrences up to the specified limit. This will be null if no occurrences are possible in the given time period.
- Throws:
IllegalArgumentException
-
equals
Compares an object for equality with this Schedule object. -
toString
Gets a String representation for this Schedule object.- Overrides:
toString
in classBaseMetadata<Schedule>
- Returns:
- a String representing this Schedule.
-
getBaseMetadataType
Description copied from class:BaseMetadata
Gets the intended type of this metadata.- Specified by:
getBaseMetadataType
in classBaseMetadata<Schedule>
- Returns:
- the base metadata type
-
clone
- Specified by:
clone
in classBaseMetadata<Schedule>
-
toDisplayString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale- Returns:
- a localized string describing this schedule.
-