Enum Class ResourceObjectTypeDependencyStrictnessType

java.lang.Object
java.lang.Enum<ResourceObjectTypeDependencyStrictnessType>
com.evolveum.midpoint.xml.ns._public.common.common_3.ResourceObjectTypeDependencyStrictnessType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<ResourceObjectTypeDependencyStrictnessType>, Constable

public enum ResourceObjectTypeDependencyStrictnessType extends Enum<ResourceObjectTypeDependencyStrictnessType> implements TypeSafeEnum
TODO
  • Enum Constant Details

    • STRICT

      public static final ResourceObjectTypeDependencyStrictnessType STRICT
      If the object that we depend on is not provisioned then the dependent object will not be provisioned either. Attempt to provision it will end up with an error. If the object that we depend on is being provisioned in the same operation (context) as the dependent object then they will be provisioned in order: independent first, dependent second. Proper inbound-template-outbound sequence of mapping will be executed between the provisionings.
    • RELAXED

      public static final ResourceObjectTypeDependencyStrictnessType RELAXED
      If the object that we depend on is being provisioned in the same operation (context) as the dependent object then they will be provisioned in order: independent first, dependent second. Proper inbound-template-outbound sequence of mapping will be executed between the provisionings. But no error is thrown if the dependent object is provisioned without the other object. If both objects are being provisioned in the same operation (context) and provisioning of the object that we depend on fails the provisioning of the dependent object will be skipped. The relaxed strictness guarantees ordering in case that both objects are being provisioned in the same operation (context) and delaying of the operation on dependent resource in case the operation on independent resource fails.
    • LAX

      If the object that we depend on is being provisioned in the same operation (context) as the dependent object then they will be provisioned in order: independent first, dependent second. Proper inbound-template-outbound sequence of mapping will be executed between the provisionings. But NO ERROR is thrown if the dependent object is provisioned without the other object. Not even if they are provisioned in the same operation (context) an the independent object fails. The lax strictness only guarantees ordering in case that both objects are being (successfully) provisioned. It does not guarantee anything else.
  • Method Details

    • values

      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ResourceObjectTypeDependencyStrictnessType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue