Package com.sun.identity.saml2.ecp
Interface ECPResponse
- 
- All Superinterfaces:
 XmlSerializable
@SupportedAll public interface ECPResponse extends XmlSerializable
TheECPResponseinterface defines methods for properties required by an ECP response. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActor()Returns value ofactorattribute.StringgetAssertionConsumerServiceURL()Returns the value of theAssertionConsumerServiceURLattribute.BooleanisMustUnderstand()Returns value ofmustUnderstandattribute.booleanisMutable()Returns true if object is mutable.voidmakeImmutable()Makes this object immutable.voidsetActor(String actor)Sets the value ofactorattribute.voidsetAssertionConsumerServiceURL(String url)Sets the value of theAssertionConsumerServiceURLattribute.voidsetMustUnderstand(Boolean mustUnderstand)Sets the value of themustUnderstandattribute.- 
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
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.
 
- 
getAssertionConsumerServiceURL
String getAssertionConsumerServiceURL()
Returns the value of theAssertionConsumerServiceURLattribute.- Returns:
 - the value of 
AssertionConsumerServiceURLattribute. - See Also:
 setAssertionConsumerServiceURL(String)
 
- 
setAssertionConsumerServiceURL
void setAssertionConsumerServiceURL(String url) throws SAML2Exception
Sets the value of theAssertionConsumerServiceURLattribute.- Parameters:
 url- the value ofAssertionConsumerServiceURLattribute.- 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.
 
 
 - 
 
 -