Package com.adyen.model.nexo
Class IssuerAndSerialNumber
- java.lang.Object
-
- com.adyen.model.nexo.IssuerAndSerialNumber
-
public class IssuerAndSerialNumber extends Object
Definition: Cryptographic Message Syntax (CMS) data structure containing the issuer name and certificate serial number -- 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) This the value of input parameter sid.Java class for IssuerAndSerialNumber complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="IssuerAndSerialNumber"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Issuer" type="{}Issuer"/> <element name="SerialNumber" type="{}SerialNumber"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected IssuerissuerThe Issuer.protected BigIntegerserialNumberThe Serial number.
-
Constructor Summary
Constructors Constructor Description IssuerAndSerialNumber()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IssuergetIssuer()Gets the value of the issuer property.BigIntegergetSerialNumber()Gets the value of the serialNumber property.voidsetIssuer(Issuer value)Sets the value of the issuer property.voidsetSerialNumber(BigInteger value)Sets the value of the serialNumber property.
-
-
-
Field Detail
-
issuer
protected Issuer issuer
The Issuer.
-
serialNumber
protected BigInteger serialNumber
The Serial number.
-
-
Method Detail
-
getIssuer
public Issuer getIssuer()
Gets the value of the issuer property.- Returns:
- possible object is
Issuer
-
setIssuer
public void setIssuer(Issuer value)
Sets the value of the issuer property.- Parameters:
value- allowed object isIssuer
-
getSerialNumber
public BigInteger getSerialNumber()
Gets the value of the serialNumber property.- Returns:
- possible object is
BigInteger
-
setSerialNumber
public void setSerialNumber(BigInteger value)
Sets the value of the serialNumber property.- Parameters:
value- allowed object isBigInteger
-
-