Package com.sun.identity.saml2.protocol
Interface ManageNameIDRequest
- All Superinterfaces:
RequestAbstract
,XmlSerializable
This class represents the ManageNameIDRequestType complex type.
The following schema fragment specifies the expected content contained within this java content object.
<complexType name="ManageNameIDRequestType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:2.0:protocol}RequestAbstractType"> <sequence> <choice> <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}NameID"/> <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}EncryptedID"/> </choice> <choice> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}NewID"/> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}NewEncryptedID"/> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}Terminate"/> </choice> </sequence> </extension> </complexContent> </complexType>
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theencryptedID
property.Returns the value of thenameID
property.Returns the value of thenewEncryptedID
property.getNewID()
Returns the value of theNewID
property.boolean
Returns true if this is a terminating request.void
setEncryptedID
(EncryptedID value) Sets the value of theencryptedID
property.void
Sets the value of thenameID
property.void
setNewEncryptedID
(NewEncryptedID value) Sets the value of thenewEncryptedID
property.void
Sets the value of theNewID
property.void
setTerminate
(boolean terminate) Set this request as terminating request.Methods inherited from interface com.sun.identity.saml2.protocol.RequestAbstract
getConsent, getDestination, getExtensions, getID, getIssueInstant, getIssuer, getSignature, getVersion, isMutable, isSignatureValid, isSigned, makeImmutable, setConsent, setDestination, setExtensions, setID, setIssueInstant, setIssuer, setVersion, sign
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
Method Details
-
getNewEncryptedID
NewEncryptedID getNewEncryptedID()Returns the value of thenewEncryptedID
property.- Returns:
- the value of the
newEncryptedID
property.
-
setNewEncryptedID
Sets the value of thenewEncryptedID
property.- Parameters:
value
- the value of thenewEncryptedID
property.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- ifObject
is immutable.
-
getEncryptedID
EncryptedID getEncryptedID()Returns the value of theencryptedID
property.- Returns:
- the value of the
encryptedID
property.
-
setEncryptedID
Sets the value of theencryptedID
property.- Parameters:
value
- the value of theencryptedID
property.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- ifObject
is immutable.
-
getNewID
NewID getNewID()Returns the value of theNewID
property.- Returns:
- the value of the
NewID
property.
-
setNewID
Sets the value of theNewID
property.- Parameters:
value
- the value of theNewID
property.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- ifObject
is immutable.
-
getNameID
NameID getNameID()Returns the value of thenameID
property.- Returns:
- the value of the
nameID
property.
-
setNameID
Sets the value of thenameID
property.- Parameters:
value
- the value of thenameID
property.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- ifObject
is immutable.
-
getTerminate
boolean getTerminate()Returns true if this is a terminating request.- Returns:
- true if this is a terminating request.
-
setTerminate
void setTerminate(boolean terminate) throws com.sun.identity.saml2.common.SAML2Exception Set this request as terminating request.- Parameters:
terminate
- true to set this request as terminating request.- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if this object is immutable.
-