mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Nicolas Capponi
26.31.2013 efa949b25f472d7e4c39733678d8f0e5229f8201
opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/ManagedObjectOption.java
@@ -26,23 +26,21 @@
package org.opends.server.admin;
/**
 * This enumeration contains various options that can be associated
 * with managed object definitions.
 * This enumeration contains various options that can be associated with managed
 * object definitions.
 */
public enum ManagedObjectOption {
  /**
   * Use this option to identify managed object types which should be
   * considered as advanced and should not be exposed by default in
   * client applications.
   */
  ADVANCED,
    /**
     * Use this option to identify managed object types which should be
     * considered as advanced and should not be exposed by default in client
     * applications.
     */
    ADVANCED,
  /**
   * Use this option to identify managed object types which must not
   * be directly exposed in client applications.
   */
  HIDDEN;
    /**
     * Use this option to identify managed object types which must not be
     * directly exposed in client applications.
     */
    HIDDEN;
}