Class IDFFAuthContexts
- java.lang.Object
-
- com.sun.identity.console.federation.IDFFAuthContexts
-
- All Implemented Interfaces:
Serializable
public class IDFFAuthContexts extends Object implements Serializable
This is collections of authentication contexts. This object can be serialized between view beans forwarding.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classIDFFAuthContexts.IDFFAuthContext
-
Constructor Summary
Constructors Constructor Description IDFFAuthContexts()Default Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IDFFAuthContexts.IDFFAuthContextget(String name)Returns IDFFAuthContext in the collection.MapgetCollections()booleanisEmpty()Returns true is collection is empty.voidput(String name, String supported, String level)Adds IDFFAuthContext to the collectionvoidput(String name, String supported, String key, String value, String level)Adds IDFFAuthContext to the collection.intsize()Returns number of entries in collection.ListtoIDPAuthContextInfo()ListtoSPAuthContextInfo()
-
-
-
Method Detail
-
toSPAuthContextInfo
public List toSPAuthContextInfo()
-
toIDPAuthContextInfo
public List toIDPAuthContextInfo()
-
isEmpty
public boolean isEmpty()
Returns true is collection is empty.- Returns:
- true is collection is empty.
-
size
public int size()
Returns number of entries in collection.- Returns:
- number of entries in collection.
-
getCollections
public Map getCollections()
-
put
public void put(String name, String supported, String level)
Adds IDFFAuthContext to the collection- Parameters:
name- Name of entry.supported- true if this entry is supported.level- Level of entry.
-
put
public void put(String name, String supported, String key, String value, String level)
Adds IDFFAuthContext to the collection.- Parameters:
name- Name of entry.supported- true if this entry is supported.key- Key of entry.value- Value of entry.level- Level of entry.
-
get
public IDFFAuthContexts.IDFFAuthContext get(String name)
Returns IDFFAuthContext in the collection.- Parameters:
name- Name of entry to return.- Returns:
- IDFFAuthContext in the collection.
-
-