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

com.adyen.model.nexo.Parameter 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: Parameters associated to a cryptographic algorithm -- Reference: RFC 3880: Internet X.509 Public Key Infrastructure Certificate and Certificate
 *
 * 

Java class for Parameter complex type. * *

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

 * <complexType name="Parameter">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="InitialisationVector" type="{}InitialisationVector" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Parameter") public class Parameter { /** * The Initialisation vector. */ @XmlAttribute(name = "InitialisationVector") protected byte[] initialisationVector; /** * Gets the value of the initialisationVector property. * * @return possible object is byte[] */ public byte[] getInitialisationVector() { return initialisationVector; } /** * Sets the value of the initialisationVector property. * * @param value allowed object is byte[] */ public void setInitialisationVector(byte[] value) { this.initialisationVector = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy