Package com.adyen.model.nexo
Class SignerIdentifier
- java.lang.Object
-
- com.adyen.model.nexo.SignerIdentifier
-
public class SignerIdentifier extends Object
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>
-
-
Field Summary
Fields Modifier and Type Field Description protected IssuerAndSerialNumberissuerAndSerialNumberThe Issuer and serial number.
-
Constructor Summary
Constructors Constructor Description SignerIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IssuerAndSerialNumbergetIssuerAndSerialNumber()Gets the value of the issuerAndSerialNumber property.voidsetIssuerAndSerialNumber(IssuerAndSerialNumber value)Sets the value of the issuerAndSerialNumber property.
-
-
-
Field Detail
-
issuerAndSerialNumber
protected IssuerAndSerialNumber issuerAndSerialNumber
The Issuer and serial number.
-
-
Method Detail
-
getIssuerAndSerialNumber
public IssuerAndSerialNumber getIssuerAndSerialNumber()
Gets the value of the issuerAndSerialNumber property.- Returns:
- possible object is
IssuerAndSerialNumber
-
setIssuerAndSerialNumber
public void setIssuerAndSerialNumber(IssuerAndSerialNumber value)
Sets the value of the issuerAndSerialNumber property.- Parameters:
value- allowed object isIssuerAndSerialNumber
-
-