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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-config/src/main/java/org/forgerock/opendj/config/server/ConfigChangeResult.java
@@ -37,17 +37,21 @@
 * about the result of processing a configuration change.
 */
public final class ConfigChangeResult {
    // A set of messages describing the changes that were made, any
    // action that may be required, or any problems that were
    // encountered.
    /**
     * A set of messages describing the changes that were made, any
     * action that may be required, or any problems that were encountered.
     */
    private List<LocalizableMessage> messages;
    // Indicates whether one or more of the changes requires
    // administrative action in order to take effect.
    /**
     * Indicates whether one or more of the changes requires
     * administrative action in order to take effect.
     */
    private boolean adminActionRequired;
    // The result code to return to the client from this configuration
    // change.
    /**
     * The result code to return to the client from this configuration change.
     */
    private ResultCode resultCode;
    /**