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

Matthew Swift
19.51.2013 813c78e0dd2862ff7eb2c80963d80ab81e1c1bf9
opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/StringPropertyDefinition.java
@@ -26,7 +26,7 @@
package org.opends.server.admin;
import static com.forgerock.opendj.util.Validator.*;
import org.forgerock.util.Reject;
import java.util.EnumSet;
import java.util.Locale;
@@ -171,7 +171,7 @@
     */
    @Override
    public String decodeValue(String value) throws IllegalPropertyValueStringException {
        ensureNotNull(value);
        Reject.ifNull(value);
        try {
            validateValue(value);
@@ -256,7 +256,7 @@
     */
    @Override
    public String normalizeValue(String value) throws IllegalPropertyValueException {
        ensureNotNull(value);
        Reject.ifNull(value);
        if (isCaseInsensitive()) {
            return value.trim().toLowerCase();
@@ -270,7 +270,7 @@
     */
    @Override
    public void validateValue(String value) throws IllegalPropertyValueException {
        ensureNotNull(value);
        Reject.ifNull(value);
        if (pattern != null) {
            Matcher matcher = pattern.matcher(value);