Package com.sun.identity.saml2.ecp
Interface ECPRequest
-
@SupportedAll public interface ECPRequest
TheECPRequest
interface defines methods for properties required by an ECP request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getActor()
Returns value ofactor
attribute.IDPList
getIDPList()
Returns theIDPList
Object.Issuer
getIssuer()
Returns the value of the issuer attribute.String
getProviderName()
Returns theProviderName
attribute value.Boolean
isMustUnderstand()
Returns value ofmustUnderstand
attribute.boolean
isMutable()
Returns true if object is mutable.Boolean
isPassive()
Returns the value of theisPassive
attribute.void
makeImmutable()
Makes this object immutable.void
setActor(String actor)
Sets the value ofactor
attribute.void
setIDPList(IDPList idpList)
Sets theIDPList
Object.void
setIsPassive(Boolean isPassive)
Sets the value of theIsPassive
attribute.void
setIssuer(Issuer issuer)
Sets the value of the issuer attribute.void
setMustUnderstand(Boolean mustUnderstand)
Sets the value of themustUnderstand
attribute.void
setProviderName(String providerName)
Sets theProviderName
attribute value.String
toXMLString()
Returns a String representation of this Object.String
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns a String representation of this Object.
-
-
-
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 theIDPList
Object.- Returns:
- the
IDPList
object. - See Also:
setIDPList(IDPList)
-
setIDPList
void setIDPList(IDPList idpList) throws SAML2Exception
Sets theIDPList
Object.- Parameters:
idpList
- the newIDPList
object.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getIDPList()
-
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.
-
getProviderName
String getProviderName()
Returns theProviderName
attribute value.- Returns:
- value of the
ProviderName
attribute value. - See Also:
setProviderName(String)
-
setProviderName
void setProviderName(String providerName) throws SAML2Exception
Sets theProviderName
attribute value.- Parameters:
providerName
- value of theProviderName
attribute.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getProviderName()
-
isPassive
Boolean isPassive()
Returns the value of theisPassive
attribute.- Returns:
- value of
isPassive
attribute.
-
setIsPassive
void setIsPassive(Boolean isPassive) throws SAML2Exception
Sets the value of theIsPassive
attribute.- Parameters:
isPassive
- value ofIsPassive
attribute.- Throws:
SAML2Exception
- if the object is immutable.
-
toXMLString
String toXMLString() throws SAML2Exception
Returns a String representation of this Object.- Returns:
- a String representation of this Object.
- Throws:
SAML2Exception
- if cannot create String object.
-
toXMLString
String toXMLString(boolean includeNSPrefix, boolean declareNS) throws SAML2Exception
Returns a String representation of this Object.- Parameters:
includeNSPrefix
- determines whether or not the namespace qualifier is prepended to the Element when converteddeclareNS
- determines whether or not the namespace is declared within the Element.- Returns:
- the String representation of this Object.
- Throws:
SAML2Exception
- if cannot create String object.
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if object is mutable.
-
-