com.adyen.model.nexo.AlgorithmIdentifier 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Identification of a cryptographic algorithm -- Reference: RFC 3880: Internet X.509 Public Key Infrastructure Certificate and Certificate -- Usage: This data structure contains: the algorithm identifier associated parameters
*
* Java class for AlgorithmIdentifier complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlgorithmIdentifier">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Parameter" type="{}Parameter" minOccurs="0"/>
* </sequence>
* <attribute name="Algorithm" use="required" type="{}AlgorithmType" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlgorithmIdentifier", propOrder = {
"parameter"
})
public class AlgorithmIdentifier {
/**
* The Parameter.
*/
@XmlElement(name = "Parameter")
protected Parameter parameter;
/**
* The Algorithm.
*/
@XmlAttribute(name = "Algorithm", required = true)
protected AlgorithmType algorithm;
/**
* Gets the value of the parameter property.
*
* @return possible object is {@link Parameter }
*/
public Parameter getParameter() {
return parameter;
}
/**
* Sets the value of the parameter property.
*
* @param value allowed object is {@link Parameter }
*/
public void setParameter(Parameter value) {
this.parameter = value;
}
/**
* Gets the value of the algorithm property.
*
* @return possible object is {@link AlgorithmType }
*/
public AlgorithmType getAlgorithm() {
return algorithm;
}
/**
* Sets the value of the algorithm property.
*
* @param value allowed object is {@link AlgorithmType }
*/
public void setAlgorithm(AlgorithmType value) {
this.algorithm = value;
}
}