Interface MergableAuthenticationInfo
- All Superinterfaces:
AuthenticationInfo,Serializable
- All Known Implementing Classes:
SimpleAccount,SimpleAuthenticationInfo
An extension of the AuthenticationInfo interface to be implemented by
classes that support merging with other AuthenticationInfo instances.
This allows an instance of this class to be an aggregation, or composition of account data
from across multiple Realms Realms, not just one realm.
This is useful in a multi-realm authentication configuration - the individual AuthenticationInfo
objects obtained from each realm can be merged into a single instance. This instance can then be
returned at the end of the authentication process, giving the impression of a single underlying
realm/data source.
- Since:
- 0.9
-
Method Summary
Modifier and TypeMethodDescriptionvoidmerge(AuthenticationInfo info) Merges the givenAuthenticationInfointo this instance.Methods inherited from interface org.apache.shiro.authc.AuthenticationInfo
getCredentials, getPrincipals
-
Method Details
-
merge
Merges the givenAuthenticationInfointo this instance. The specific way that the merge occurs is up to the implementation, but typically it involves combining the principals and credentials together in this instance. Theinfoargument should not be modified in any way.- Parameters:
info- the info that should be merged into this instance.
-