Package com.sun.identity.saml2.protocol
Interface RequesterID
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface RequesterID extends XmlSerializable
This interface identifies the requester in anAuthnRequest
message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getValue()
Returns the value of theRequesterID
URI.boolean
isMutable()
Returns value true if object is mutable.void
makeImmutable()
Makes this object immutable.void
setValue(String value)
Sets the value of theRequesterID
URI.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of theRequesterID
URI.- Returns:
- value of the
RequesterID
URI. - See Also:
setValue(java.lang.String)
-
setValue
void setValue(String value) throws SAML2Exception
Sets the value of theRequesterID
URI.- Parameters:
value
- of theRequesterID
URI.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getValue()
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns value true if object is mutable.- Returns:
- true if object is mutable.
-
-