| | |
| | | import org.forgerock.opendj.ldap.ResultCode; |
| | | import org.forgerock.opendj.ldap.SearchScope; |
| | | import org.forgerock.opendj.ldap.schema.AttributeType; |
| | | import org.forgerock.util.Reject; |
| | | import org.forgerock.opendj.server.config.server.GroupImplementationCfg; |
| | | import org.forgerock.opendj.server.config.server.StaticGroupImplementationCfg; |
| | | import org.forgerock.util.Reject; |
| | | import org.opends.server.api.Group; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.core.ModifyOperation; |
| | |
| | | import org.opends.server.types.Modification; |
| | | import org.opends.server.types.SearchFilter; |
| | | |
| | | import static org.forgerock.opendj.ldap.schema.CoreSchema.*; |
| | | import static org.opends.messages.ExtensionMessages.*; |
| | | import static org.opends.server.core.DirectoryServer.*; |
| | | import static org.opends.server.protocols.internal.InternalClientConnection.*; |
| | |
| | | throw new DirectoryException(ResultCode.OBJECTCLASS_VIOLATION, message); |
| | | } |
| | | |
| | | someMemberAttributeType = DirectoryServer.getAttributeType(ATTR_MEMBER); |
| | | someMemberAttributeType = getMemberAttributeType(); |
| | | } |
| | | else if (hasGroupOfNamesClass) |
| | | { |
| | |
| | | throw new DirectoryException(ResultCode.OBJECTCLASS_VIOLATION, message); |
| | | } |
| | | |
| | | someMemberAttributeType = DirectoryServer.getAttributeType(ATTR_MEMBER); |
| | | someMemberAttributeType = getMemberAttributeType(); |
| | | } |
| | | else if (hasGroupOfUniqueNamesClass) |
| | | { |
| | | someMemberAttributeType = DirectoryServer.getAttributeType(ATTR_UNIQUE_MEMBER_LC); |
| | | someMemberAttributeType = getUniqueMemberAttributeType(); |
| | | } |
| | | else |
| | | { |