Package com.sun.identity.saml2.ecp
Interface ECPResponse
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface ECPResponse extends XmlSerializable
TheECPResponse
interface defines methods for properties required by an ECP response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getActor()
Returns value ofactor
attribute.String
getAssertionConsumerServiceURL()
Returns the value of theAssertionConsumerServiceURL
attribute.Boolean
isMustUnderstand()
Returns value ofmustUnderstand
attribute.boolean
isMutable()
Returns true if object is mutable.void
makeImmutable()
Makes this object immutable.void
setActor(String actor)
Sets the value ofactor
attribute.void
setAssertionConsumerServiceURL(String url)
Sets the value of theAssertionConsumerServiceURL
attribute.void
setMustUnderstand(Boolean mustUnderstand)
Sets the value of themustUnderstand
attribute.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
isMustUnderstand
Boolean isMustUnderstand()
Returns value ofmustUnderstand
attribute.- Returns:
- value of
mustUnderstand
attribute.
-
setMustUnderstand
void setMustUnderstand(Boolean mustUnderstand) throws SAML2Exception
Sets the value of themustUnderstand
attribute.- Parameters:
mustUnderstand
- the value ofmustUnderstand
attribute.- Throws:
SAML2Exception
- if the object is immutable.
-
getActor
String getActor()
Returns value ofactor
attribute.- Returns:
- value of
actor
attribute
-
setActor
void setActor(String actor) throws SAML2Exception
Sets the value ofactor
attribute.- Parameters:
actor
- the value ofactor
attribute- Throws:
SAML2Exception
- if the object is immutable.
-
getAssertionConsumerServiceURL
String getAssertionConsumerServiceURL()
Returns the value of theAssertionConsumerServiceURL
attribute.- Returns:
- the value of
AssertionConsumerServiceURL
attribute. - See Also:
setAssertionConsumerServiceURL(String)
-
setAssertionConsumerServiceURL
void setAssertionConsumerServiceURL(String url) throws SAML2Exception
Sets the value of theAssertionConsumerServiceURL
attribute.- Parameters:
url
- the value ofAssertionConsumerServiceURL
attribute.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getAssertionConsumerServiceURL()
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if object is mutable.
-
-