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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java
@@ -79,17 +79,15 @@
         */
        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;
@@ -97,15 +95,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;
    /**