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

public enum LayerType extends Enum<LayerType> implements TypeSafeEnum
Defines a system layer.
  • Enum Constant Details

    • SCHEMA

      public static final LayerType SCHEMA
      The lowest layer. It means that the schema is taken in almost unmodified form. This efficiently means "bottom of provisioning component" from the architectural perspective. This is the default. Note that this means that the schemaHandling is actually applied on the schema on this layer. The LayerType does not apply to the "pure" schema, therefore this is the lowest practically applicable level.
    • MODEL

      public static final LayerType MODEL
      Model layer means application of schema constraints inside the IDM model. This efficiently means "bottom of IDM model component" from the architectural perspective.
    • PRESENTATION

      public static final LayerType PRESENTATION
      The presentation layer that is used to display information to the user but it also means presentation of the data outside midpoint. Therefore it applies both to GUI and also the web service interface and also to similar interfaces. This efficiently means "top of IDM model component" or "Model API" from the architectural perspective.
  • Method Details

    • values

      public static LayerType[] 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 LayerType 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 LayerType fromValue(String v)