Enum Class ConnDevScriptIntentType

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

public enum ConnDevScriptIntentType extends Enum<ConnDevScriptIntentType> implements TypeSafeEnum
An enumeration that defines staticly supported operation intents. Intents are used to distinguish scripts into manageable smaller scripts. Some intents are global (no operation and object class) and some intents are object-class and operation specific.
  • Enum Constant Details

    • ALL

      public static final ConnDevScriptIntentType ALL
      Operation applies to / returns all instances of specified object class.
    • ID

      public static final ConnDevScriptIntentType ID
      Operation returns a single instance of specified object class identified by ID.
    • FILTER

      public static final ConnDevScriptIntentType FILTER
      Search using filter
    • NATIVE

      public static final ConnDevScriptIntentType NATIVE
      Native definition of schema - does not contain remapping to predefined ConnId attributes.
    • CONNID

      public static final ConnDevScriptIntentType CONNID
      ConnId specific definition of schema - contains mapping of "native" attributes to predefined ConnId attributes.
    • RELATION

      public static final ConnDevScriptIntentType RELATION
    • AUTH

      public static final ConnDevScriptIntentType AUTH
      Authentication customization code.
  • Method Details

    • values

      public static ConnDevScriptIntentType[] 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 ConnDevScriptIntentType 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

      public static ConnDevScriptIntentType fromValue(String v)