Package com.sun.identity.saml2.protocol
Interface NameIDMappingResponse
-
- All Superinterfaces:
StatusResponse
,XmlSerializable
@SupportedAll public interface NameIDMappingResponse extends StatusResponse
This class represents the NameIDMappingResponseType complex type.The following schema fragment specifies the expected content contained within this java content object.
<complexType name="NameIDMappingResponseType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:2.0:protocol}StatusResponseType"> <choice> <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}NameID"/> <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}EncryptedID"/> </choice> </extension> </complexContent> </complexType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EncryptedID
getEncryptedID()
Returns the value of theencryptedID
property.NameID
getNameID()
Returns the value of thenameID
property.void
setEncryptedID(EncryptedID value)
Sets the value of theencryptedID
property.void
setNameID(NameID value)
Sets the value of thenameID
property.-
Methods inherited from interface com.sun.identity.saml2.protocol.StatusResponse
getConsent, getDestination, getExtensions, getID, getInResponseTo, getIssueInstant, getIssuer, getSignature, getStatus, getVersion, isMutable, isSignatureValid, isSigned, makeImmutable, setConsent, setDestination, setExtensions, setID, setInResponseTo, setIssueInstant, setIssuer, setStatus, setVersion, sign
-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getEncryptedID
EncryptedID getEncryptedID()
Returns the value of theencryptedID
property.- Returns:
- the value of the
encryptedID
property.
-
setEncryptedID
void setEncryptedID(EncryptedID value) throws SAML2Exception
Sets the value of theencryptedID
property.- Parameters:
value
- the value of theencryptedID
property.- Throws:
SAML2Exception
- ifObject
is immutable.
-
getNameID
NameID getNameID()
Returns the value of thenameID
property.- Returns:
- the value of the
nameID
property.
-
setNameID
void setNameID(NameID value) throws SAML2Exception
Sets the value of thenameID
property.- Parameters:
value
- the value of thenameID
property.- Throws:
SAML2Exception
- ifObject
is immutable.
-
-