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

com.adyen.model.nexo.EnvelopedData 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.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;


/**
 * Definition: Cryptographic Message Syntax (CMS) data structure containing encrypted data with encryption key -- Reference: RFC 3852: Cryptographic Message Syntax (CMS) -- Usage: This data structure contains:  the version of the data structure (which is v0 in EPAS protocol context)  the protected encrytion key for every adressee (recipient)  the encrypted data
 *
 * 

Java class for EnvelopedData complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EnvelopedData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice maxOccurs="unbounded">
 *           <element name="KeyTransport" type="{}KeyTransport"/>
 *           <element name="KEK" type="{}KEK"/>
 *         </choice>
 *         <element name="EncryptedContent" type="{}EncryptedContent"/>
 *       </sequence>
 *       <attribute name="Version" type="{}VersionType" default="v0" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EnvelopedData", propOrder = { "keyTransportOrKEK", "encryptedContent" }) public class EnvelopedData { /** * The Key transport or kek. */ @XmlElements({ @XmlElement(name = "KeyTransport", type = KeyTransport.class), @XmlElement(name = "KEK", type = KEK.class) }) protected List keyTransportOrKEK; /** * The Encrypted content. */ @XmlElement(name = "EncryptedContent", required = true) protected EncryptedContent encryptedContent; /** * The Version. */ @XmlAttribute(name = "Version") protected VersionType version; /** * Gets the value of the keyTransportOrKEK property. * * * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the keyTransportOrKEK property. * * * For example, to add a new item, do as follows: *
     *    getKeyTransportOrKEK().add(newItem);
     * 
* * * * Objects of the following type(s) are allowed in the list * {@link KeyTransport } * {@link KEK } * * @return the key transport or kek */ public List getKeyTransportOrKEK() { if (keyTransportOrKEK == null) { keyTransportOrKEK = new ArrayList(); } return this.keyTransportOrKEK; } /** * Gets the value of the encryptedContent property. * * @return possible object is {@link EncryptedContent } */ public EncryptedContent getEncryptedContent() { return encryptedContent; } /** * Sets the value of the encryptedContent property. * * @param value allowed object is {@link EncryptedContent } */ public void setEncryptedContent(EncryptedContent value) { this.encryptedContent = value; } /** * Gets the value of the version property. * * @return possible object is {@link VersionType } */ public VersionType getVersion() { if (version == null) { return VersionType.V_0; } else { return version; } } /** * Sets the value of the version property. * * @param value allowed object is {@link VersionType } */ public void setVersion(VersionType value) { this.version = value; } }