Package com.sun.identity.saml2.ecp
Interface ECPRequest
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface ECPRequest extends XmlSerializable
TheECPRequestinterface defines methods for properties required by an ECP request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActor()Returns value ofactorattribute.IDPListgetIDPList()Returns theIDPListObject.IssuergetIssuer()Returns the value of the issuer attribute.StringgetProviderName()Returns theProviderNameattribute value.BooleanisMustUnderstand()Returns value ofmustUnderstandattribute.booleanisMutable()Returns true if object is mutable.BooleanisPassive()Returns the value of theisPassiveattribute.voidmakeImmutable()Makes this object immutable.voidsetActor(String actor)Sets the value ofactorattribute.voidsetIDPList(IDPList idpList)Sets theIDPListObject.voidsetIsPassive(Boolean isPassive)Sets the value of theIsPassiveattribute.voidsetIssuer(Issuer issuer)Sets the value of the issuer attribute.voidsetMustUnderstand(Boolean mustUnderstand)Sets the value of themustUnderstandattribute.voidsetProviderName(String providerName)Sets theProviderNameattribute value.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getIssuer
Issuer getIssuer()
Returns the value of the issuer attribute.- Returns:
- the value of the issuer attribute
- See Also:
setIssuer(Issuer)
-
setIssuer
void setIssuer(Issuer issuer) throws SAML2Exception
Sets the value of the issuer attribute.- Parameters:
issuer- the value of the issuer attribute to be set- Throws:
SAML2Exception- if the object is immutable- See Also:
getIssuer()
-
getIDPList
IDPList getIDPList()
Returns theIDPListObject.- Returns:
- the
IDPListobject. - See Also:
setIDPList(IDPList)
-
setIDPList
void setIDPList(IDPList idpList) throws SAML2Exception
Sets theIDPListObject.- Parameters:
idpList- the newIDPListobject.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getIDPList()
-
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.
-
getProviderName
String getProviderName()
Returns theProviderNameattribute value.- Returns:
- value of the
ProviderNameattribute value. - See Also:
setProviderName(String)
-
setProviderName
void setProviderName(String providerName) throws SAML2Exception
Sets theProviderNameattribute value.- Parameters:
providerName- value of theProviderNameattribute.- Throws:
SAML2Exception- if the object is immutable.- See Also:
getProviderName()
-
isPassive
Boolean isPassive()
Returns the value of theisPassiveattribute.- Returns:
- value of
isPassiveattribute.
-
setIsPassive
void setIsPassive(Boolean isPassive) throws SAML2Exception
Sets the value of theIsPassiveattribute.- Parameters:
isPassive- value ofIsPassiveattribute.- 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.
-
-