public class LdapSchemaMapping extends Object
Modifier and Type | Field and Description |
---|---|
static ObjectClass |
ANY_OBJECT_CLASS |
Constructor and Description |
---|
LdapSchemaMapping(LdapConnection conn) |
Modifier and Type | Method and Description |
---|---|
String |
create(ObjectClass oclass,
Name name,
Attributes initialAttrs) |
Attribute |
createAttribute(ObjectClass oclass,
String attrName,
LdapEntry entry,
boolean emptyWhenNotFound)
Returns an empty attribute instead of
null when emptyWhenNotFound
is true . |
Name |
createName(ObjectClass oclass,
LdapEntry entry)
Creates a
Name for the given entry. |
Uid |
createUid(ObjectClass oclass,
LdapEntry entry)
Creates a
Uid for the given entry. |
Uid |
createUid(ObjectClass oclass,
String entryDN) |
Uid |
createUid(String ldapUidAttr,
Attributes attributes) |
Attribute |
encodeAttribute(ObjectClass oclass,
Attribute attr) |
GuardedPasswordAttribute |
encodePassword(ObjectClass oclass,
Attribute attr) |
Set<String> |
getEffectiveLdapClasses(ObjectClass oclass)
Returns the LDAP object class to which the given framework object
class is mapped in a transitive manner, i.e., together with any superior
object classes, any superiors thereof, etc..
|
String |
getEntryDN(ObjectClass oclass,
Name name) |
String |
getLdapAttribute(ObjectClass oclass,
Attribute attr)
Returns the name of the LDAP attribute which corresponds to the given
attribute of the given object class, or null.
|
String |
getLdapAttribute(ObjectClass oclass,
String attrName,
boolean transfer) |
Set<String> |
getLdapAttributes(ObjectClass oclass,
Set<String> attrs,
boolean transfer)
Returns the names of the LDAP attributes which correspond to the given
attribute names of the given object class.
|
List<String> |
getLdapClasses(ObjectClass oclass)
Returns the LDAP object classes to which the given framework object
class is mapped.
|
String |
getLdapNameAttribute(ObjectClass oclass)
Returns the LDAP attribute which corresponds to
Name for the
given object class. |
String |
getLdapUidAttribute(ObjectClass oclass)
Returns the LDAP attribute which corresponds to
Uid . |
List<String> |
getUserNameLdapAttributes(ObjectClass oclass) |
void |
removeNonReadableAttributes(ObjectClass oclass,
Set<String> attrNames) |
String |
rename(ObjectClass oclass,
String entryDN,
Name newName) |
Schema |
schema() |
public static final ObjectClass ANY_OBJECT_CLASS
public LdapSchemaMapping(LdapConnection conn)
public Schema schema()
public List<String> getLdapClasses(ObjectClass oclass)
public Set<String> getEffectiveLdapClasses(ObjectClass oclass)
public List<String> getUserNameLdapAttributes(ObjectClass oclass)
public String getLdapAttribute(ObjectClass oclass, String attrName, boolean transfer)
public String getLdapAttribute(ObjectClass oclass, Attribute attr)
public Set<String> getLdapAttributes(ObjectClass oclass, Set<String> attrs, boolean transfer)
transfer
is true
,
the binary option will be added to the attributes which need it.public String getLdapUidAttribute(ObjectClass oclass)
Uid
. Should
never return null.public String getLdapNameAttribute(ObjectClass oclass)
Name
for the
given object class. Might return null
if, for example, the
object class was not configured explicitly in the configuration.public Uid createUid(ObjectClass oclass, LdapEntry entry)
Uid
for the given entry. It is assumed that the entry
contains the attribute returned by getLdapUidAttribute(org.identityconnectors.framework.common.objects.ObjectClass)
.public Uid createUid(ObjectClass oclass, String entryDN)
public Uid createUid(String ldapUidAttr, Attributes attributes)
public Name createName(ObjectClass oclass, LdapEntry entry)
Name
for the given entry. It is assumed that the entry
contains the attribute returned by getLdapNameAttribute(org.identityconnectors.framework.common.objects.ObjectClass)
.public Attribute createAttribute(ObjectClass oclass, String attrName, LdapEntry entry, boolean emptyWhenNotFound)
null
when emptyWhenNotFound
is true
.public String create(ObjectClass oclass, Name name, Attributes initialAttrs)
public Attribute encodeAttribute(ObjectClass oclass, Attribute attr)
public GuardedPasswordAttribute encodePassword(ObjectClass oclass, Attribute attr)
public String getEntryDN(ObjectClass oclass, Name name)
public String rename(ObjectClass oclass, String entryDN, Name newName)
public void removeNonReadableAttributes(ObjectClass oclass, Set<String> attrNames)
Copyright © 2018–2025. All rights reserved.