com.adyen.model.nexo.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
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;
}
}