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

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

package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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. */ @XmlElement(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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy