Package com.adyen.model.nexo
Class KEKIdentifier
- java.lang.Object
-
- com.adyen.model.nexo.KEKIdentifier
-
public class KEKIdentifier extends Object
Definition: Identification of a key encryption key (key management using previously distributed symmetric key) -- Reference: RFC 3852: Cryptographic Message Syntax (CMS) -- Usage: This data structure contains: the identification of the key the date of the keyJava class for KEKIdentifier complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KEKIdentifier"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="KeyIdentifier" use="required" type="{}KeyIdentifier" /> <attribute name="KeyVersion" use="required" type="{}KeyVersion" /> <attribute name="DerivationIdentifier" type="{}DerivationIdentifier" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]derivationIdentifierThe Derivation identifier.protected StringkeyIdentifierThe Key identifier.protected StringkeyVersionThe Key version.
-
Constructor Summary
Constructors Constructor Description KEKIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getDerivationIdentifier()Gets the value of the derivationIdentifier property.StringgetKeyIdentifier()Gets the value of the keyIdentifier property.StringgetKeyVersion()Gets the value of the keyVersion property.voidsetDerivationIdentifier(byte[] value)Sets the value of the derivationIdentifier property.voidsetKeyIdentifier(String value)Sets the value of the keyIdentifier property.voidsetKeyVersion(String value)Sets the value of the keyVersion property.
-
-
-
Method Detail
-
getKeyIdentifier
public String getKeyIdentifier()
Gets the value of the keyIdentifier property.- Returns:
- possible object is
String
-
setKeyIdentifier
public void setKeyIdentifier(String value)
Sets the value of the keyIdentifier property.- Parameters:
value- allowed object isString
-
getKeyVersion
public String getKeyVersion()
Gets the value of the keyVersion property.- Returns:
- possible object is
String
-
setKeyVersion
public void setKeyVersion(String value)
Sets the value of the keyVersion property.- Parameters:
value- allowed object isString
-
getDerivationIdentifier
public byte[] getDerivationIdentifier()
Gets the value of the derivationIdentifier property.- Returns:
- possible object is byte[]
-
setDerivationIdentifier
public void setDerivationIdentifier(byte[] value)
Sets the value of the derivationIdentifier property.- Parameters:
value- allowed object is byte[]
-
-