Package oracle.as.scheduler
Class ExclusionsDefinition
- All Implemented Interfaces:
Serializable
public class ExclusionsDefinition
extends BaseMetadata<ExclusionsDefinition>
implements Serializable
Used to represent a collection of
Exclusion
objects as a
single unit.
Instances of ExclusionsDefinition
are persisted in the metadata
repository which makes it a sharable object across Schedule
definitions.
An example is list of holidays represented as one instance of an
ExclusionsDefinition
object that contains all the individual
holidays represented by instances of Exclusion
class.
A Schedule
then refer to this holidays to skip any occurrences
that happen on any of these holidays.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExclusionsDefinition
(String name, String displayNameKey, String descriptionKey, Collection<Exclusion> exclusions, String[] resourceBundleIDs) Constructs a new instance with the given collection of exclusions.ExclusionsDefinition
(String name, String description, Collection<Exclusion> exclusions) Constructs a new instance with the given collection of exclusions. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addExclusion
(Exclusion exclusion) Add an exclusion to this object.boolean
Compares an object for equality with this ExclusionsDefinition object.Gets the intended type of this metadata.Gets the list of exclusions of this object.boolean
isExcluded
(Calendar start, Calendar date) Check if a given date fall in the list of exclusions contained within thisExclusionsDefinition
instance.void
removeExclusion
(Exclusion exclusion) Removes an Exclusion from this ExclusionsDefinition object.void
setExclusions
(Collection<Exclusion> exclusions) Sets the list of exclusions of this object.Methods inherited from class oracle.as.scheduler.BaseMetadata
getDescription, getDescriptionKey, getDisplayName, getDisplayNameKey, getMetadataObjectId, getName, getResourceBundles, hashCode, setDescription, setDescriptionKey, setDisplayName, setDisplayNameKey, setResourceBundles, toString, validate
-
Constructor Details
-
ExclusionsDefinition
Constructs a new instance with the given collection of exclusions.- Parameters:
name
- the name for this instance. It cannot be null. The name is also used as the default display name.description
- an optional description string.exclusions
- collection of exclusions instances for the new instance.
-
ExclusionsDefinition
public ExclusionsDefinition(String name, String displayNameKey, String descriptionKey, Collection<Exclusion> exclusions, String[] resourceBundleIDs) Constructs a new instance with the given collection of exclusions.- Parameters:
name
- the bame for this 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.exclusions
- collection of exclusions instances for the new instance.resourceBundleIDs
- an array of resource bundle ids. This is optional.
-
-
Method Details
-
addExclusion
Add an exclusion to this object.- Parameters:
exclusion
- instance of Exclusion to be added to this object.
-
removeExclusion
Removes an Exclusion from this ExclusionsDefinition object.- Parameters:
exclusion
- the Exclusion instance to be removed from the exclusions contained in this object.
-
getExclusions
Gets the list of exclusions of this object.- Returns:
- a collection containing the list of exclusions of this object.
-
setExclusions
Sets the list of exclusions of this object.- Parameters:
exclusions
- a collection containing the list of exclusions to be set for this object.
-
isExcluded
Check if a given date fall in the list of exclusions contained within thisExclusionsDefinition
instance. If found, it indicates that the given date must be skipped or excluded.The method takes a starting time as an argument that is used to generate occurrence if any of the
Exclusion
contained in this object is based onRecurrence
.- Parameters:
start
- the start time for any recurrence based Exclusion.date
- the date to be checked for exclusion.- Returns:
true
of the given date must be excluded, orfalse
otherwise.
-
equals
Compares an object for equality with this ExclusionsDefinition object. -
getBaseMetadataType
Description copied from class:BaseMetadata
Gets the intended type of this metadata.- Specified by:
getBaseMetadataType
in classBaseMetadata<ExclusionsDefinition>
- Returns:
- the base metadata type
-
clone
- Specified by:
clone
in classBaseMetadata<ExclusionsDefinition>
-