Class IncompatibleEntity

java.lang.Object
oracle.as.scheduler.IncompatibleEntity
All Implemented Interfaces:
Serializable

public class IncompatibleEntity extends Object implements Serializable
Encapsulates information for an Incompatibility entity.

An entity can be marked as self-incompatible. A self-incompatible entity means that jobs for the definition associated with the entity are not compatible and should not be run concurrently. If the entity is for a domain incompatibility the jobs will not run concurrently if they have the same value for the property specified for the entity.

See Also:
  • Constructor Details

    • IncompatibleEntity

      public IncompatibleEntity(MetadataObjectId entity, boolean selfIncompatible)
      Creates a new incompatibility entity.
      Parameters:
      entity - the unique identifier of the JobDefinition or JobSet definition.
      selfIncompatible - true if this entity is self-incompatible, or false otherwise.
    • IncompatibleEntity

      public IncompatibleEntity(MetadataObjectId entity, String property, boolean selfIncompatible)
      Creates a new incompatibility entity.
      Parameters:
      entity - the unique identifier of the JobDefinition or JobSet definition.
      property - the property associated with the incompatibility entity. A property is not used for a global Incompatibility.
      selfIncompatible - true if this entity is self-incompatible, or false otherwise.
    • IncompatibleEntity

      public IncompatibleEntity(IncompatibleEntity incompEntity)
      Creates a copy of the specified Incompatibilty entity.
      Parameters:
      incompEntity - the object being copied. Cannot be null.
  • Method Details

    • getEntity

      public MetadataObjectId getEntity()
      Gets the unique metadata identifier for the JobDefinition or JobSet for this incompatible entity.
      Returns:
      the metadata object identifier
    • isSelfIncompatible

      public boolean isSelfIncompatible()
      Indicates if this incompatibility entity is self-incompatible.
      Returns:
      true if this entity is self-incompatible, or false otherwise.
    • setSelfIncompatible

      public void setSelfIncompatible(boolean selfIncompatible)
      Sets the self-incompatible flag for this Incompatibility entity.
      Parameters:
      selfIncompatible - true if this entity is self-incompatible, or false otherwise.
    • getProperty

      public String getProperty()
      Gets the property name associated with this incompatible entity. A property is not used for global Incompatibility.
      Returns:
      the property name, or null if none.
    • setProperty

      public void setProperty(String property)
      Sets the property name associated with this Incompatibility entity. A property is not used for a global Incompatibility.
      Parameters:
      property - the incompatibility property. This can be null.
    • equals

      public boolean equals(Object obj)
      Checks if the object is equal to this Incompatibility entity.

      Equal means that obj the same enitity identifer, property name, and self-incompatibility value.

      Overrides:
      equals in class Object
      Parameters:
      obj - object to compare to this object.
      Returns:
      true if the object is considered equal, or false if not.