Package org.forgerock.openig.alias
Interface ClassAliasResolver
-
- All Known Implementing Classes:
CoreClassAliasResolver
,OAuth2ClassAliasResolver
,OpenAMClassAliasResolver
,TokenValidationAliasResolver
public interface ClassAliasResolver
This interface has to be implemented by each Identity Gateway module that wants to register new class aliases. Theses aliases will be resolved at configuration time (when the objects declared in the heap will be created). Multiple aliases can map to a single type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<?>
resolve(String alias)
Returns theClass
mapped to the given alias or null if the alias is unknown.
-