| | |
| | | import org.forgerock.opendj.ldap.schema.Syntax; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.types.*; |
| | | import org.opends.server.util.CollectionUtils; |
| | | import org.forgerock.opendj.ldap.ByteString; |
| | | import static org.opends.server.config.ConfigConstants.*; |
| | | import org.forgerock.i18n.slf4j.LocalizedLogger; |
| | |
| | | this.hasUpperBound = hasUpperBound; |
| | | this.upperBound = upperBound; |
| | | |
| | | activeValues = new ArrayList<>(1); |
| | | activeValues.add(value); |
| | | |
| | | activeValues = CollectionUtils.newArrayList(value); |
| | | pendingValues = activeValues; |
| | | } |
| | | |
| | |
| | | |
| | | if (requiresAdminAction()) |
| | | { |
| | | pendingValues = new ArrayList<>(1); |
| | | pendingValues.add(value); |
| | | pendingValues = CollectionUtils.newArrayList(value); |
| | | setPendingValues(getValueSet(value)); |
| | | } |
| | | else |