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

Matthew Swift
05.45.2014 e0e6d30a905e47931a89b7e9063d752a6f28106d
opendj-config/src/main/java/org/forgerock/opendj/config/DNPropertyDefinition.java
@@ -134,7 +134,7 @@
     * {@inheritDoc}
     */
    @Override
    public void validateValue(DN value, PropertyDefinitionsOptions options) {
    public void validateValue(DN value) {
        Reject.ifNull(value);
        if (baseDN != null) {
@@ -154,12 +154,12 @@
     * {@inheritDoc}
     */
    @Override
    public DN decodeValue(String value, PropertyDefinitionsOptions options) {
    public DN decodeValue(String value) {
        Reject.ifNull(value);
        try {
            DN dn = DN.valueOf(value);
            validateValue(dn, options);
            validateValue(dn);
            return dn;
        } catch (PropertyException e) {
            throw PropertyException.illegalPropertyValueException(this, value);