com.adyen.model.nexo.SignerIdentifier 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Cryptographic Message Syntax (CMS) data structure containing the Signer Identifier -- Reference: RFC 3852: Cryptographic Message Syntax (CMS) -- Usage: This data structure contains: the issuer name (see X.501-88) the certificate serial number (see X.509-97)
*
* Java class for SignerIdentifier complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SignerIdentifier">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IssuerAndSerialNumber" type="{}IssuerAndSerialNumber"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SignerIdentifier", propOrder = {
"issuerAndSerialNumber"
})
public class SignerIdentifier {
/**
* The Issuer and serial number.
*/
@XmlElement(name = "IssuerAndSerialNumber", required = true)
protected IssuerAndSerialNumber issuerAndSerialNumber;
/**
* Gets the value of the issuerAndSerialNumber property.
*
* @return possible object is {@link IssuerAndSerialNumber }
*/
public IssuerAndSerialNumber getIssuerAndSerialNumber() {
return issuerAndSerialNumber;
}
/**
* Sets the value of the issuerAndSerialNumber property.
*
* @param value allowed object is {@link IssuerAndSerialNumber }
*/
public void setIssuerAndSerialNumber(IssuerAndSerialNumber value) {
this.issuerAndSerialNumber = value;
}
}