Interface UsernameSearchMapper
-
- All Known Implementing Classes:
SamAccountNameMapper,SamAccountNameRfc2247Mapper,UserPrincipalNameSearchMapper
public interface UsernameSearchMapperA mapper interface (strategy pattern) for translating GSS names to Active Directory search space parameters.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceUsernameSearchMapper.MappedValuesMapped values holder.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Oid[]getSupportedStringNameTypes()Returns an array of name type OIDs which a mapper is able to map into AD search space.UsernameSearchMapper.MappedValuesmap(DirContext context, GSSName gssName)Maps a GSS name to AD search space parameters.booleansupportsGssName(GSSName gssName)Determines whether a mapper is able to map a given GSS name into AD search space.
-
-
-
Method Detail
-
getSupportedStringNameTypes
Oid[] getSupportedStringNameTypes()
Returns an array of name type OIDs which a mapper is able to map into AD search space.- Returns:
- supported string name type OIDs
-
supportsGssName
boolean supportsGssName(GSSName gssName)
Determines whether a mapper is able to map a given GSS name into AD search space.- Parameters:
gssName- the gssName to test- Returns:
- if this mapper is able to map a name,
falseotherwise
-
map
UsernameSearchMapper.MappedValues map(DirContext context, GSSName gssName) throws NamingException
Maps a GSS name to AD search space parameters. A mapper implementation must assure that the user can be found in the givencontextwhen an approriate GSS name is presented. The implementor must be aware that the returned search base might need to be relativized to the root DN of the context.- Parameters:
context- the search contextgssName- the GSS name to be mapped- Returns:
- mapped values for user retrieval
- Throws:
NamingException- if a context-related error has occuredIllegalArgumentException- if the GSS name is not supported
-
-