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 theIDPList
Object.Returns the value ofProxyCount
attribute.Returns a list ofRequesterID
Objects..boolean
Returns true if object is mutable.void
Makes this object immutable.void
setIDPList
(IDPList idpList) Sets theIDPList
Object.void
setProxyCount
(Integer proxyCount) Sets the value ofProxyCount
attribute.void
setRequesterIDs
(List<RequesterID> requesterIDList) Sets a list ofRequesterID
Objects.Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
Method Details
-
getIDPList
IDPList getIDPList()Returns theIDPList
Object.- Returns:
- the
IDPList
object. - See Also:
-
setIDPList
Sets theIDPList
Object.- Parameters:
idpList
- the newIDPList
object.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable.- See Also:
-
getRequesterIDs
List<RequesterID> getRequesterIDs()Returns a list ofRequesterID
Objects..- Returns:
- list of
RequesterID
objects. - See Also:
-
setRequesterIDs
void setRequesterIDs(List<RequesterID> requesterIDList) throws com.sun.identity.saml2.common.SAML2Exception Sets a list ofRequesterID
Objects.- Parameters:
requesterIDList
- the list ofRequesterID
object.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable.- See Also:
-
getProxyCount
Integer getProxyCount()Returns the value ofProxyCount
attribute.- Returns:
- the value of
ProxyCount
attribute. - See Also:
-
setProxyCount
Sets the value ofProxyCount
attribute.- Parameters:
proxyCount
- new value ofProxyCount
attribute.- 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.
-