Package com.sun.identity.saml2.protocol
Interface IDPList
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface IDPList extends XmlSerializable
This interface specifies the identity providers trusted by the requester to authenticate the presenter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetCompletegetGetComplete()Returns theGetCompleteObject.List<IDPEntry>getIDPEntries()Returns the list ofIDPEntryObjects.booleanisMutable()Returns true if object is mutable.voidmakeImmutable()Makes this object immutable.voidsetGetComplete(GetComplete getComplete)Sets theGetCompleteObject.voidsetIDPEntries(List<IDPEntry> idpEntryList)Sets theIDPEntryObject.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getIDPEntries
List<IDPEntry> getIDPEntries()
Returns the list ofIDPEntryObjects.- Returns:
- the list
IDPEntryobjects. - See Also:
setIDPEntries(List)
-
setIDPEntries
void setIDPEntries(List<IDPEntry> idpEntryList) throws SAML2Exception
Sets theIDPEntryObject.- Parameters:
idpEntryList- the list ofIDPEntryobjects.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getIDPEntries()
-
getGetComplete
GetComplete getGetComplete()
Returns theGetCompleteObject.- Returns:
- the
GetCompleteobject. - See Also:
setGetComplete(GetComplete)
-
setGetComplete
void setGetComplete(GetComplete getComplete) throws SAML2Exception
Sets theGetCompleteObject.- Parameters:
getComplete- the newGetCompleteobject.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getGetComplete()
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if the object is mutable.
-
-