Class 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 Detail

      • issuer

        protected Issuer issuer
        The Issuer.
      • serialNumber

        protected BigInteger serialNumber
        The Serial number.
    • Constructor Detail

      • IssuerAndSerialNumber

        public IssuerAndSerialNumber()
    • 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 is Issuer
      • 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 is BigInteger