Package com.sun.identity.saml2.protocol
Interface NewID
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface NewID extends XmlSerializable
This interface identifies the new identifier in anManageNameIDRequest
message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NewEncryptedID
encrypt(com.sun.identity.saml2.key.EncryptionConfig encryptionConfig, String recipientEntityID)
Returns anNewEncryptedID
object.String
getValue()
Returns the value of theNewID
URI.-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of theNewID
URI.- Returns:
- value of the
NewID
URI.
-
encrypt
NewEncryptedID encrypt(com.sun.identity.saml2.key.EncryptionConfig encryptionConfig, String recipientEntityID) throws SAML2Exception
Returns anNewEncryptedID
object.- Parameters:
encryptionConfig
- The encryption config.recipientEntityID
- Unique identifier of the recipient, it is used as the index to the cached secret key so that the key can be reused for the same recipient; It can be null in which case the secret key will be generated every time and will not be cached and reused. Note that the generation of a secret key is a relatively expensive operation.- Returns:
NewEncryptedID
object- Throws:
SAML2Exception
- if error occurs during the encryption process.
-
-