Package com.adyen.model.nexo
Class AlgorithmIdentifier
- java.lang.Object
-
- com.adyen.model.nexo.AlgorithmIdentifier
-
public class AlgorithmIdentifier extends Object
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 parametersJava 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>
-
-
Field Summary
Fields Modifier and Type Field Description protected AlgorithmTypealgorithmThe Algorithm.protected ParameterparameterThe Parameter.
-
Constructor Summary
Constructors Constructor Description AlgorithmIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AlgorithmTypegetAlgorithm()Gets the value of the algorithm property.ParametergetParameter()Gets the value of the parameter property.voidsetAlgorithm(AlgorithmType value)Sets the value of the algorithm property.voidsetParameter(Parameter value)Sets the value of the parameter property.
-
-
-
Field Detail
-
parameter
protected Parameter parameter
The Parameter.
-
algorithm
protected AlgorithmType algorithm
The Algorithm.
-
-
Method Detail
-
getParameter
public Parameter getParameter()
Gets the value of the parameter property.- Returns:
- possible object is
Parameter
-
setParameter
public void setParameter(Parameter value)
Sets the value of the parameter property.- Parameters:
value- allowed object isParameter
-
getAlgorithm
public AlgorithmType getAlgorithm()
Gets the value of the algorithm property.- Returns:
- possible object is
AlgorithmType
-
setAlgorithm
public void setAlgorithm(AlgorithmType value)
Sets the value of the algorithm property.- Parameters:
value- allowed object isAlgorithmType
-
-