Package com.sun.identity.saml2.ecp
Interface ECPRelayState
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface ECPRelayState extends XmlSerializable
TheECPRelayStateinterface defines methods for properties required by an ECP RelayState.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActor()Returns value ofactorattribute.StringgetValue()Returns the value of theRelayState.BooleanisMustUnderstand()Returns value ofmustUnderstandattribute.booleanisMutable()Returns true if object is mutable.voidmakeImmutable()Makes this object immutable.voidsetActor(String actor)Sets the value ofactorattribute.voidsetMustUnderstand(Boolean mustUnderstand)Sets the value of themustUnderstandattribute.voidsetValue(String value)Sets the value of theRelayState.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of theRelayState.- Returns:
- value of the
RelayState. - See Also:
setValue(String)
-
setValue
void setValue(String value) throws SAML2Exception
Sets the value of theRelayState.- Parameters:
value- new value of theRelayState.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getValue()
-
isMustUnderstand
Boolean isMustUnderstand()
Returns value ofmustUnderstandattribute.- Returns:
- value of
mustUnderstandattribute.
-
setMustUnderstand
void setMustUnderstand(Boolean mustUnderstand) throws SAML2Exception
Sets the value of themustUnderstandattribute.- Parameters:
mustUnderstand- the value ofmustUnderstandattribute.- Throws:
SAML2Exception- if the object is immutable.
-
getActor
String getActor()
Returns value ofactorattribute.- Returns:
- value of
actorattribute
-
setActor
void setActor(String actor) throws SAML2Exception
Sets the value ofactorattribute.- Parameters:
actor- the value ofactorattribute- Throws:
SAML2Exception- if the object is immutable.
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if object is mutable.
-
-