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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
@@ -142,7 +142,7 @@
                pd.getName(), pd.getClass().getName()));
    }
    // Create the message.
    /** Create the message. */
    private static LocalizableMessage createMessage(final PropertyDefinition<?> pd,
            final Object value) {
        final PropertyDefinitionUsageBuilder builder = new PropertyDefinitionUsageBuilder(true);
@@ -150,11 +150,13 @@
                builder.getUsage(pd));
    }
    // LocalizableMessage that explains the problem.
    /** LocalizableMessage that explains the problem. */
    private final LocalizableMessage message;
    // The property definition associated with the property that caused
    // the exception.
    /**
     * The property definition associated with the property that caused
     * the exception.
     */
    private final PropertyDefinition<?> pd;
    private PropertyException(final PropertyDefinition<?> pd, final LocalizableMessage message) {
@@ -170,9 +172,7 @@
        this.pd = pd;
    }
    /**
     * {@inheritDoc}
     */
    /** {@inheritDoc} */
    public LocalizableMessage getMessageObject() {
        return message;
    }