Class GetCRL

java.lang.Object
org.mozilla.jss.pkix.cmmf.GetCRL
All Implemented Interfaces:
ASN1Value

public class GetCRL extends Object implements ASN1Value
CMMF GetCRL.
 GetCRL ::= SEQUENCE {
      issuerName      Name,
      cRLName         GeneralName OPTIONAL,
      time            GeneralizedTime OPTIONAL,
      reasons         ReasonFlags OPTIONAL }
 
  • Field Details

    • unused

      public static final int unused
      A bit position in a ReasonFlags bit string.
      See Also:
    • keyCompromise

      public static final int keyCompromise
      A bit position in a ReasonFlags bit string.
      See Also:
    • cACompromise

      public static final int cACompromise
      A bit position in a ReasonFlags bit string.
      See Also:
    • affiliationChanged

      public static final int affiliationChanged
      A bit position in a ReasonFlags bit string.
      See Also:
    • superseded

      public static final int superseded
      A bit position in a ReasonFlags bit string.
      See Also:
    • cessationOfOperation

      public static final int cessationOfOperation
      A bit position in a ReasonFlags bit string.
      See Also:
    • certificateHold

      public static final int certificateHold
      A bit position in a ReasonFlags bit string.
      See Also:
    • issuerName

      private ANY issuerName
    • cRLName

      private ANY cRLName
    • time

      private GeneralizedTime time
    • reasons

      private BIT_STRING reasons
    • sequence

      private SEQUENCE sequence
    • TAG

      private static final Tag TAG
    • templateInstance

      private static final GetCRL.Template templateInstance
  • Constructor Details

    • GetCRL

      public GetCRL(ANY issuerName, ANY cRLName, GeneralizedTime time, BIT_STRING reasons)
      Constructs a GetCRL from its components.
      Parameters:
      issuerName - The issuer name of the CRL. This should be an ASN.1 Name.
      cRLName - The name of the CRL, which may be null. This should be an ASN.1 GeneralName.
      time - The time of the CRL, which may be null.
      reasons - Can be used to specify from among CRLs partitioned by revocation reason. The BIT_STRING can be created from a Java BitSet. The positions in the BitSet should be set or cleared using the constants provided in this class.
  • Method Details

    • getIssuerName

      public ANY getIssuerName()
      Returns the issuerName field.
    • getCRLName

      public ANY getCRLName()
      Returns the cRLName field, which may be null.
    • getTime

      public GeneralizedTime getTime()
      Returns the time field, which may be null.
    • getReasons

      public BIT_STRING getReasons()
      Returns the reasons field, which may be null.
    • getTag

      public Tag getTag()
      Description copied from interface: ASN1Value
      Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
      Specified by:
      getTag in interface ASN1Value
      Returns:
      Base tag.
    • encode

      public void encode(OutputStream ostream) throws IOException
      Description copied from interface: ASN1Value
      Write this value's DER encoding to an output stream using its own base tag.
      Specified by:
      encode in interface ASN1Value
      Parameters:
      ostream - Output stream.
      Throws:
      IOException - If an error occurred.
    • encode

      public void encode(Tag implicitTag, OutputStream ostream) throws IOException
      Description copied from interface: ASN1Value
      Write this value's DER encoding to an output stream using an implicit tag.
      Specified by:
      encode in interface ASN1Value
      Parameters:
      implicitTag - Implicit tag.
      ostream - Output stream.
      Throws:
      IOException - If an error occurred.
    • getTemplate

      public static GetCRL.Template getTemplate()