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

Jean-Noel Rouvignac
24.41.2015 e7cac727a9231ff3602e61a4ea678e0463eb0e39
opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 *      Portions Copyright 2014-2015 ForgeRock AS
 */
package org.opends.server.admin;
import org.forgerock.i18n.LocalizableMessage;
@@ -86,21 +86,19 @@
     */
    SERVER_RESTART("server-restart");
    // The user-friendly name of the type.
    /** The user-friendly name of the type. */
    private final String name;
    // Private constructor.
    /** Private constructor. */
    private Type(String name) {
      this.name = name;
    }
    /**
     * {@inheritDoc}
     */
    /** {@inheritDoc} */
    @Override
    public String toString() {
      return name;
@@ -108,15 +106,19 @@
  }
  // The managed object definition associated with this administrator
  // action.
  /**
   * The managed object definition associated with this administrator
   * action.
   */
  private final AbstractManagedObjectDefinition<?, ?> definition;
  // The name of the property definition associated with this
  // administrator action.
  /**
   * The name of the property definition associated with this
   * administrator action.
   */
  private final String propertyName;
  // The type of administration action.
  /** The type of administration action. */
  private final Type type;