public interface ExactMatchIdentityMapperCfgClient extends IdentityMapperCfgClient
The Exact Match Identity Mapper maps an identifier string to user entries by searching for the entry containing a specified attribute whose value is the provided identifier. For example, the username provided by the client for DIGEST-MD5 authentication must match the value of the uid attribute
Modifier and Type | Method and Description |
---|---|
ManagedObjectDefinition<? extends ExactMatchIdentityMapperCfgClient,? extends ExactMatchIdentityMapperCfg> |
definition()
Get the configuration definition associated with this Exact Match Identity Mapper.
|
String |
getJavaClass()
Gets the "java-class" property.
|
SortedSet<AttributeType> |
getMatchAttribute()
Gets the "match-attribute" property.
|
SortedSet<DN> |
getMatchBaseDN()
Gets the "match-base-dn" property.
|
void |
setJavaClass(String value)
Sets the "java-class" property.
|
void |
setMatchAttribute(Collection<AttributeType> values)
Sets the "match-attribute" property.
|
void |
setMatchBaseDN(Collection<DN> values)
Sets the "match-base-dn" property.
|
isEnabled, setEnabled
commit, properties
ManagedObjectDefinition<? extends ExactMatchIdentityMapperCfgClient,? extends ExactMatchIdentityMapperCfg> definition()
definition
in interface ConfigurationClient
definition
in interface IdentityMapperCfgClient
String getJavaClass()
Specifies the fully-qualified name of the Java class that provides the Exact Match Identity Mapper implementation.
getJavaClass
in interface IdentityMapperCfgClient
void setJavaClass(String value) throws PropertyException
Specifies the fully-qualified name of the Java class that provides the Exact Match Identity Mapper implementation.
setJavaClass
in interface IdentityMapperCfgClient
value
- The value of the "java-class" property.PropertyException
- If the new value is invalid.SortedSet<AttributeType> getMatchAttribute()
Specifies the attribute whose value should exactly match the ID string provided to this identity mapper.
At least one value must be provided. All values must refer to the name or OID of an attribute type defined in the directory server schema. If multiple attributes or OIDs are provided, at least one of those attributes must contain the provided ID string value in exactly one entry. The internal search performed includes a logical OR across all of these values.
void setMatchAttribute(Collection<AttributeType> values) throws PropertyException
Specifies the attribute whose value should exactly match the ID string provided to this identity mapper.
At least one value must be provided. All values must refer to the name or OID of an attribute type defined in the directory server schema. If multiple attributes or OIDs are provided, at least one of those attributes must contain the provided ID string value in exactly one entry. The internal search performed includes a logical OR across all of these values.
values
- The values of the "match-attribute" property.PropertyException
- If one or more of the new values are invalid.SortedSet<DN> getMatchBaseDN()
Specifies the set of base DNs below which to search for users.
The base DNs will be used when performing searches to map the provided ID string to a user entry. If multiple values are given, searches are performed below all specified base DNs.
void setMatchBaseDN(Collection<DN> values) throws PropertyException
Specifies the set of base DNs below which to search for users.
The base DNs will be used when performing searches to map the provided ID string to a user entry. If multiple values are given, searches are performed below all specified base DNs.
values
- The values of the "match-base-dn" property.PropertyException
- If one or more of the new values are invalid.Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.