Package com.sun.identity.saml2.protocol
Interface Scoping
- All Superinterfaces:
XmlSerializable
This interface defines methods to retrieve Identity Providers and
context/limitations related to proxying of the request message.
-
Method Summary
Modifier and TypeMethodDescriptionReturns theIDPListObject.Returns the value ofProxyCountattribute.Returns a list ofRequesterIDObjects..booleanReturns true if object is mutable.voidMakes this object immutable.voidsetIDPList(IDPList idpList) Sets theIDPListObject.voidsetProxyCount(Integer proxyCount) Sets the value ofProxyCountattribute.voidsetRequesterIDs(List<RequesterID> requesterIDList) Sets a list ofRequesterIDObjects.Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
Method Details
-
getIDPList
IDPList getIDPList()Returns theIDPListObject.- Returns:
- the
IDPListobject. - See Also:
-
setIDPList
Sets theIDPListObject.- Parameters:
idpList- the newIDPListobject.- Throws:
com.sun.identity.saml2.common.SAML2Exception- if the object is immutable.- See Also:
-
getRequesterIDs
List<RequesterID> getRequesterIDs()Returns a list ofRequesterIDObjects..- Returns:
- list of
RequesterIDobjects. - See Also:
-
setRequesterIDs
void setRequesterIDs(List<RequesterID> requesterIDList) throws com.sun.identity.saml2.common.SAML2Exception Sets a list ofRequesterIDObjects.- Parameters:
requesterIDList- the list ofRequesterIDobject.- Throws:
com.sun.identity.saml2.common.SAML2Exception- if the object is immutable.- See Also:
-
getProxyCount
Integer getProxyCount()Returns the value ofProxyCountattribute.- Returns:
- the value of
ProxyCountattribute. - See Also:
-
setProxyCount
Sets the value ofProxyCountattribute.- Parameters:
proxyCount- new value ofProxyCountattribute.- Throws:
com.sun.identity.saml2.common.SAML2Exception- if the object is immutable.- See Also:
-
makeImmutable
void makeImmutable()Makes this object immutable. -
isMutable
boolean isMutable()Returns true if object is mutable.- Returns:
- true if object is mutable.
-