Interface IdentityStoreFactory
-
public interface IdentityStoreFactoryFactory for creatingIdentityStoreinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IdentityStorecreate(String orgName)ReturnsIdentityStorehandle for an organization.IdentityStorecreate(String realm, SSOToken token)Creates aIdentityStoreinstance.default IdentityStorecreate(Realm realm)ReturnsIdentityStorehandle for a realm.
-
-
-
Method Detail
-
create
IdentityStore create(String realm, SSOToken token)
Creates aIdentityStoreinstance.- Parameters:
realm- The realm to create the instance intoken- TheSSOTokenof the user- Returns:
- The
IdentityStoreinstance
-
create
IdentityStore create(String orgName)
ReturnsIdentityStorehandle for an organization. Checks a cache before creating.- Parameters:
orgName- the organization name.- Returns:
IdentityStoreobject
-
create
default IdentityStore create(Realm realm)
ReturnsIdentityStorehandle for a realm. Checks a cache before creating.- Parameters:
realm- theRealm- Returns:
IdentityStoreobject
-
-