All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.KEKIdentifier Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 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 key
 *
 * 

Java 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>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KEKIdentifier") public class KEKIdentifier { /** * The Key identifier. */ @XmlAttribute(name = "KeyIdentifier", required = true) protected String keyIdentifier; /** * The Key version. */ @XmlAttribute(name = "KeyVersion", required = true) protected String keyVersion; /** * The Derivation identifier. */ @XmlAttribute(name = "DerivationIdentifier") protected byte[] derivationIdentifier; /** * Gets the value of the keyIdentifier property. * * @return possible object is {@link String } */ public String getKeyIdentifier() { return keyIdentifier; } /** * Sets the value of the keyIdentifier property. * * @param value allowed object is {@link String } */ public void setKeyIdentifier(String value) { this.keyIdentifier = value; } /** * Gets the value of the keyVersion property. * * @return possible object is {@link String } */ public String getKeyVersion() { return keyVersion; } /** * Sets the value of the keyVersion property. * * @param value allowed object is {@link String } */ public void setKeyVersion(String value) { this.keyVersion = value; } /** * Gets the value of the derivationIdentifier property. * * @return possible object is byte[] */ public byte[] getDerivationIdentifier() { return derivationIdentifier; } /** * Sets the value of the derivationIdentifier property. * * @param value allowed object is byte[] */ public void setDerivationIdentifier(byte[] value) { this.derivationIdentifier = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy