| | |
| | | * |
| | | * |
| | | * 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; |
| | |
| | | */ |
| | | 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; |
| | |
| | | |
| | | } |
| | | |
| | | // 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; |
| | | |
| | | |