| | |
| | | import org.forgerock.opendj.ldap.DN; |
| | | import org.forgerock.opendj.ldap.RDN; |
| | | import org.forgerock.opendj.ldap.schema.AttributeType; |
| | | import org.forgerock.opendj.ldap.schema.ObjectClass; |
| | | import org.opends.guitools.controlpanel.datamodel.BinaryValue; |
| | | import org.opends.guitools.controlpanel.datamodel.CustomSearchResult; |
| | | import org.opends.guitools.controlpanel.datamodel.ObjectClassValue; |
| | |
| | | import org.opends.guitools.controlpanel.util.Utilities; |
| | | import org.opends.server.types.Entry; |
| | | import org.opends.server.types.LDIFImportConfig; |
| | | import org.forgerock.opendj.ldap.schema.ObjectClass; |
| | | import org.opends.server.types.OpenDsException; |
| | | import org.opends.server.types.Schema; |
| | | import org.opends.server.util.LDIFReader; |
| | |
| | | { |
| | | String oc = (String)o; |
| | | ObjectClass objectClass = schema.getObjectClass(oc.toLowerCase()); |
| | | if (objectClass != null) |
| | | if (!objectClass.isPlaceHolder()) |
| | | { |
| | | for (AttributeType attr : objectClass.getRequiredAttributes()) |
| | | { |
| | |
| | | for (String oc : ocs) |
| | | { |
| | | ObjectClass objectClass = schema.getObjectClass(oc); |
| | | if (objectClass != null) |
| | | if (!objectClass.isPlaceHolder()) |
| | | { |
| | | for (AttributeType attr : objectClass.getRequiredAttributes()) |
| | | { |