Class WorkAssignment
- All Implemented Interfaces:
Serializable
The operating times and resource allocation for a WorkAssignment are defined via a Workshift definition. One or more Workshift definitions can be associated with the WorkAssignment definition.
Once a WorkAssignment is defined, it can then be associated with a Request Processor at runtime. A definition of a WorkAssignment can be bound to one or more Request Processors and a Request Processor can have multiple WorkAssignment definitions bound to it.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enumerates the supported nodes for WorkAssignment specialization.static enum
Enumerates the supported property names for WorkAssignment specialization. -
Constructor Summary
ConstructorsConstructorDescriptionWorkAssignment
(String name, String description) Constructor with the name and description.WorkAssignment
(String name, String displayNameKey, String descriptionKey, String[] resourceBundleIDs) Constructor with the name and description and associated resource bundles.WorkAssignment
(String name, String displayNameKey, String descriptionKey, Document specialization, Collection<MetadataObjectId> workshifts, boolean active, String[] resourceBundleIDs) Constructor to create a fully-defined WorkAssignment and associated resource bundles.WorkAssignment
(String name, String description, Document specialization, Collection<MetadataObjectId> workshifts, boolean active) Constructor to create a fully-defined WorkAssignment. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addWorkshift
(MetadataObjectId objectId) Adds a workshift to this WorkAssignment.void
addWorkshifts
(Collection<MetadataObjectId> objectIds) Adds a collection of workshifts to this WorkAssignment.boolean
Compares an object for equality with this WorkAssignment object.Gets the intended type of this metadata.Retrieves the specialization rules defined in this WorkAssignment.Returns the workshifts that are associated with this WorkAssignment.boolean
isActive()
Deprecated.boolean
Checks if the work assignment definition is enabled.void
removeWorkshift
(MetadataObjectId objectId) Removes a workshift from this WorkAssignment.void
setActive
(boolean value) Deprecated.Replaced bysetEnabled(boolean)
void
setEnabled
(boolean value) Enables or disables the work assignment.void
Sets the specialization rules for this WorkAssignment.toString()
Same value asBaseMetadata.getName()
.void
Validates this as a bound WorkAssignment.void
validateBound
(Locale clientLocale) Validates this as a bound WorkAssignment.Methods inherited from class oracle.as.scheduler.BaseMetadata
getDescription, getDescriptionKey, getDisplayName, getDisplayNameKey, getMetadataObjectId, getName, getResourceBundles, hashCode, setDescription, setDescriptionKey, setDisplayName, setDisplayNameKey, setResourceBundles, validate
-
Constructor Details
-
WorkAssignment
Constructor with the name and description.- Parameters:
name
- name to be assigned to this WorkAssignment. Name is also used as the default display name unless otherwise specifically set.description
- description for this WorkAssignment, ornull
if none.
-
WorkAssignment
public WorkAssignment(String name, String displayNameKey, String descriptionKey, String[] resourceBundleIDs) Constructor with the name and description and associated resource bundles.- Parameters:
name
- name of the WorkAssignment. 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.resourceBundleIDs
- optional array of resource bundle id.
-
WorkAssignment
public WorkAssignment(String name, String description, Document specialization, Collection<MetadataObjectId> workshifts, boolean active) Constructor to create a fully-defined WorkAssignment.- Parameters:
name
- name of the WorkAssignment. Name is also used as the default display name unless otherwise specifically set.description
- the description for this WorkAssignment, ornull
if none.specialization
- XML fragment that defines the specialization rules for this WorkAssignment.workshifts
- collection of the names of one or more Workshift definitions to be associated with this WorkAssignment.active
-true
if the work assignment is active;false
if it is not active.
-
WorkAssignment
public WorkAssignment(String name, String displayNameKey, String descriptionKey, Document specialization, Collection<MetadataObjectId> workshifts, boolean active, String[] resourceBundleIDs) Constructor to create a fully-defined WorkAssignment and associated resource bundles.- Parameters:
name
- name of the WorkAssignment. 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.specialization
- the XML fragment that defines the specialization rules for this WorkAssignment.workshifts
- a collection of the names of one or more Workshift definitions to be associated with this WorkAssignment.active
-true
if the work assignment is active;false
if it is not active.resourceBundleIDs
- optional array of resource bundle id.
-
-
Method Details
-
addWorkshifts
Adds a collection of workshifts to this WorkAssignment. The workshifts are identified by their metadata object identifiers.When this WorkAssignment definition is persisted in the metadata repository using the metadata services, the metadata service validates that the workshifts referred by the names in the argument exist in the system.
- Parameters:
objectIds
- list of workshifts to be associated to this WorkAssignment.
-
addWorkshift
Adds a workshift to this WorkAssignment. The workshift is appended to list of workshifts already associated with this WorkAssignment.When this WorkAssignment definition is persisted in the metadata repository using the metadata services, the metadata service validates that the workshift referred by the name in the argument exist in the system.
- Parameters:
objectId
- identifier of a workshift to be associated with this WorkAssignment.
-
getWorkshifts
Returns the workshifts that are associated with this WorkAssignment. The method returns the metadata identifer of the workshifts.The actual Workshift definitions can be retrieved by calling the appropriate methods in the metdata services.
- Returns:
- collection of the identifiers of the Workshifts associated with this WorkAssignment.
-
removeWorkshift
Removes a workshift from this WorkAssignment.- Parameters:
objectId
- identifier of the Workshift to be removed.
-
getSpecializationRules
Retrieves the specialization rules defined in this WorkAssignment.- Returns:
- specialization rules in XML format.
-
setSpecializationRules
Sets the specialization rules for this WorkAssignment.These rules are specified as an XML fragment that must comply with the specified XML schema. The enforcement and validation of the XML fragment against the schema is done when the WorkAssignment is persisted using the metadata services.
- Parameters:
doc
- XML fragment that contains the specialization rule.
-
isEnabled
public boolean isEnabled()Checks if the work assignment definition is enabled.- Returns:
true
if enabled, or {code false} is disabled.
-
setEnabled
public void setEnabled(boolean value) Enables or disables the work assignment.- Parameters:
value
-true
to enable;false
to disable.
-
isActive
Deprecated.Replaced byisEnabled()
Checks if the work assignment definition is enabled or not.- Returns:
true
if enabled, or {code false} otherwise.
-
setActive
Deprecated.Replaced bysetEnabled(boolean)
Enables or disables the work assignment.- Parameters:
value
-true
to enable,false
to disable.
-
validateBound
Validates this as a bound WorkAssignment. The validation for a bound WorkAssignment is more stringent than for a non-bound one. This method also performs the basic validation.The method performs checks that are possible on this object. It does not ensure the existence of objects referenced by this definition. Such references and related validations are done by the
MetadataService
at the time of object persistence.MetadataService
also calls this method to ensure only valid objects are persisted.- Throws:
ValidationException
- thrown if any invalid data is detected.
-
validateBound
Validates this as a bound WorkAssignment. The validation for a bound WorkAssignment is more stringent than for a non-bound one. This method also performs the basic validation.The method performs checks that are possible on this object. It does not ensure the existence of objects referenced by this definition. Such references and related validations are done by the
MetadataService
at the time of object persistence.MetadataService
also calls this method to ensure only valid objects are persisted.- Throws:
ValidationException
- thrown if any invalid data is detected.
-
equals
Compares an object for equality with this WorkAssignment object. -
toString
Description copied from class:BaseMetadata
Same value asBaseMetadata.getName()
.- Overrides:
toString
in classBaseMetadata<WorkAssignment>
- Returns:
- the string represtation of this object.
-
getBaseMetadataType
Description copied from class:BaseMetadata
Gets the intended type of this metadata.- Specified by:
getBaseMetadataType
in classBaseMetadata<WorkAssignment>
- Returns:
- the base metadata type
-
clone
- Specified by:
clone
in classBaseMetadata<WorkAssignment>
-
isEnabled()