Class ActiveIdentifierBundleFactories
- java.lang.Object
-
- edu.cornell.mannlib.vitro.webapp.auth.identifier.ActiveIdentifierBundleFactories
-
public class ActiveIdentifierBundleFactories extends Object
Keep a list of the active IdentifierBundleFactories in the context.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaddFactory(IdentifierBundleFactory factory)Add a new IdentifierBundleFactory to the list.static List<String>getFactoryNames()Just for diagnostics.static ActiveIdentifierBundleFactoriesgetInstance()static IdentifierBundlegetUserIdentifierBundle(UserAccount userAccount)Get the Identifiers that would be created if this user were to log in.
-
-
-
Method Detail
-
getInstance
public static ActiveIdentifierBundleFactories getInstance()
-
addFactory
public static void addFactory(IdentifierBundleFactory factory)
Add a new IdentifierBundleFactory to the list.
-
getFactoryNames
public static List<String> getFactoryNames()
Just for diagnostics. Don't expose the factories themselves, only their names.
-
getUserIdentifierBundle
public static IdentifierBundle getUserIdentifierBundle(UserAccount userAccount)
Get the Identifiers that would be created if this user were to log in.
-
-