Enum Class SimpleACIWorld.ACSA.Type

java.lang.Object
java.lang.Enum<SimpleACIWorld.ACSA.Type>
com.isode.dsapi.aci.SimpleACIWorld.ACSA.Type
All Implemented Interfaces:
Serializable, Comparable<SimpleACIWorld.ACSA.Type>, Constable
Enclosing class:
SimpleACIWorld.ACSA

public static enum SimpleACIWorld.ACSA.Type extends Enum<SimpleACIWorld.ACSA.Type>
Type of ACSA.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Global ACSA: one that we can understand and handle, and that will be updated on the DIT when .save() is called.
    Local ACSA: one that we can't understand, or that we can't handle for some reason, or that has been specifically marked as for local control only, and which will not be updated on the DIT on .save().
    ACSA which currently exists on the DIT but which will be deleted on the next .save() call.
    Shadowed area which should not be touched, as it is not mastered on this DSA.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final boolean
     
    final boolean
     
    final boolean
     
    final boolean
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • GLOBAL

      public static final SimpleACIWorld.ACSA.Type GLOBAL
      Global ACSA: one that we can understand and handle, and that will be updated on the DIT when .save() is called. Note that even BAC areas or SAC areas with ACIAs or other warnings can be updated, so count as 'global'.
    • LOCAL

      public static final SimpleACIWorld.ACSA.Type LOCAL
      Local ACSA: one that we can't understand, or that we can't handle for some reason, or that has been specifically marked as for local control only, and which will not be updated on the DIT on .save().
    • SHADOW

      public static final SimpleACIWorld.ACSA.Type SHADOW
      Shadowed area which should not be touched, as it is not mastered on this DSA.
    • NONE

      public static final SimpleACIWorld.ACSA.Type NONE
      ACSA which currently exists on the DIT but which will be deleted on the next .save() call.
  • Field Details

    • isGLOBAL

      public final boolean isGLOBAL
    • isLOCAL

      public final boolean isLOCAL
    • isSHADOW

      public final boolean isSHADOW
    • isNONE

      public final boolean isNONE
  • Method Details

    • values

      public static SimpleACIWorld.ACSA.Type[] 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 SimpleACIWorld.ACSA.Type 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