Class Incompatibility
- All Implemented Interfaces:
Serializable
An Incompatibility specifies JobDefinition and/or JobSet definitions that are considered to be incompatible in the system and jobs for those definitions should not be concurrently run. Enterprise Scheduler performs incompatibility checks when it prepares to execute a request. The request will be blocked if an incompatible request is already being executed.
An Incompatibility is made up of one or more incompatible entities. An entity references a JobDefintion or JobSet definition. Each entity must reference a different JobDefintion or JobSet that is present in the metadata repository.
An entity can be marked self-incompatible. A self incompatible entity means that two request for that entity are not compatible and should not run concurrently.
An Incompatibility can be defined globally or for a given domain (resource). The entities for a global incompatibility are always considered to be incompatible. The entities for a domain incompatibility are considered incompatible if they have the same value for the specified domain resource. The resource is identified by a property name specified for each entity making up the Incompatibility. Each entity can specify the same property name or a different property name.
A valid Incompatibility definition usually has two or more entities. An Incompatibility having one entity is valid only if it is a self-incompatible entity.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enum for valid Incompatibility type. -
Constructor Summary
ConstructorsConstructorDescriptionIncompatibility
(String name, String displayNameKey, String descriptionKey, Incompatibility.IncompatibilityType type, String[] resourceBundleIDs) Constructs a new incompatibility definition and associate resource bundles.Incompatibility
(String name, String description, Incompatibility.IncompatibilityType type) Constructs a new incompatibility definition. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addEntity
(IncompatibleEntity incompEntity) Adds an incompatibility entity to this object.void
addEntity
(MetadataObjectId entity, boolean selfIncompatible) Adds an incompatibility entity to this object.void
addEntity
(MetadataObjectId entity, String property, boolean selfIncompatible) Adds an incompatibility entity to this object.boolean
Compares an object for equality with this Incompatibility object.Gets a collection of the incompatibility entities associated with this object.Gets the intended type of this metadata.getEntity
(MetadataObjectId entity) Gets information for an incompatibility entity associated with this incompatibility definition.getType()
Gets the incompatibility type.int
hashCode()
The hash code for this object.void
removeEntity
(MetadataObjectId entity) Removes the specified entity from this incompatibility definition.Methods inherited from class oracle.as.scheduler.BaseMetadata
getDescription, getDescriptionKey, getDisplayName, getDisplayNameKey, getMetadataObjectId, getName, getResourceBundles, setDescription, setDescriptionKey, setDisplayName, setDisplayNameKey, setResourceBundles, toString, validate
-
Constructor Details
-
Incompatibility
Constructs a new incompatibility definition.This constructor is used by clients to create Incompatibility definitions. Each incompatibility entity that is subsequently added is expected to be valid for incompatibility type associated with this object
- Parameters:
name
- the unique name to be given to this incompatibility definition. Must not benull
. The name is also used as the default display name unless otherwise specifically set.description
- an optional description. This can benull
.type
- the incompatibility type. Must not benull
.- Throws:
NullPointerException
- if a name or incompatibility type is not specified.
-
Incompatibility
public Incompatibility(String name, String displayNameKey, String descriptionKey, Incompatibility.IncompatibilityType type, String[] resourceBundleIDs) Constructs a new incompatibility definition and associate resource bundles.This constructor is used by clients to create Incompatibility definitions. Each incompatibility entity that is subsequently added is expected to be valid for incompatibility type associated with this object
- Parameters:
name
- the name for this instance. It cannot benull
. 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.type
- the incompatibility type. Must not benull
.resourceBundleIDs
- an array of resource bundle id. Optional.- Throws:
NullPointerException
- if a name or incompatibility type is not specified.
-
-
Method Details
-
getType
Gets the incompatibility type.- Returns:
- the incompatibility type
-
addEntity
Adds an incompatibility entity to this object. This method is suitable for adding a new entity to a global incompatibility definition.- Parameters:
entity
- the unique identifier for theJobDefinition
orJobSet
entity being added.selfIncompatible
-true
if the incompatibility entity is self-incompatible, orfalse
if it is not self-incompatible.- Throws:
ValidationException
- if this incompatibility already contains a reference to the entity. Also, thrown if the entity is not suitable for this incompatibility definition; for example, a property must be specified for each entity of a domain incompatibility.
-
addEntity
public void addEntity(MetadataObjectId entity, String property, boolean selfIncompatible) throws ValidationException Adds an incompatibility entity to this object. This method is suitable for adding a new entity to a domain incompatibility definition.- Parameters:
entity
- the unique identifier for theJobDefinition
orJobSet
entity being added.property
- the property associated with the incompatibility entity. This cannot benull
for a domain incompatibility.selfIncompatible
-true
if the incompatibility entity is self-incompatible, orfalse
if it is not self-incompatible.- Throws:
ValidationException
- if this incompatibility already contains a reference to the entity. Also, thrown if the entity is not suitable for this incompatibility definition; for example, a property must be specified for each entity of a domain incompatibility.
-
addEntity
Adds an incompatibility entity to this object.This makes a copy of the entity information being added.
- Parameters:
incompEntity
- information for the incompatibility entity.- Throws:
NullPointerException
- if incompatibility entity not specified.ValidationException
- if this incompatibility already contains a reference to the entity. Also, thrown if the entity is not suitable for this incompatibility definition; for example, a property must be specified for each entity of a domain incompatibility.
-
removeEntity
Removes the specified entity from this incompatibility definition.- Parameters:
entity
- the identifier of the entity to be removed.
-
getEntity
Gets information for an incompatibility entity associated with this incompatibility definition.- Parameters:
entity
- the identiifer of the incompatibility entity- Returns:
- information for the incompatibility entity. This will be
null
if no such entity is associated with this object, or no entity was specified.
-
getAllEntities
Gets a collection of the incompatibility entities associated with this object.- Returns:
- the entities associated with this object.
-
hashCode
public int hashCode()The hash code for this object.- Overrides:
hashCode
in classBaseMetadata<Incompatibility>
- Returns:
- hash code of this object.
-
equals
Compares an object for equality with this Incompatibility object. -
getBaseMetadataType
Description copied from class:BaseMetadata
Gets the intended type of this metadata.- Specified by:
getBaseMetadataType
in classBaseMetadata<Incompatibility>
- Returns:
- the base metadata type
-
clone
- Specified by:
clone
in classBaseMetadata<Incompatibility>
- Throws:
ValidationException
-