summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/x509/RevokedCertificate.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/src/netscape/security/x509/RevokedCertificate.java')
-rw-r--r--pki/base/util/src/netscape/security/x509/RevokedCertificate.java65
1 files changed, 32 insertions, 33 deletions
diff --git a/pki/base/util/src/netscape/security/x509/RevokedCertificate.java b/pki/base/util/src/netscape/security/x509/RevokedCertificate.java
index d5d12b3c8..41f18d9b4 100644
--- a/pki/base/util/src/netscape/security/x509/RevokedCertificate.java
+++ b/pki/base/util/src/netscape/security/x509/RevokedCertificate.java
@@ -23,69 +23,68 @@ import java.security.cert.X509CRLEntry;
import java.util.Date;
/**
- * <p>
- * Abstract class for a revoked certificate in a CRL (Certificate Revocation
- * List).
- *
+ * <p>Abstract class for a revoked certificate in a CRL (Certificate
+ * Revocation List).
+ *
* The ASN.1 definition for <em>revokedCertificates</em> is:
- *
* <pre>
- * revokedCertificates SEQUENCE OF SEQUENCE {
- * userCertificate CertificateSerialNumber,
- * revocationDate ChoiceOfTime,
- * crlEntryExtensions Extensions OPTIONAL
- * -- if present, must be v2
- * } OPTIONAL
- * <p>
- * CertificateSerialNumber ::= INTEGER
- * <p>
- * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
- * <p>
- * Extension ::= SEQUENCE {
- * extnId OBJECT IDENTIFIER,
- * critical BOOLEAN DEFAULT FALSE,
- * extnValue OCTET STRING
- * -- contains a DER encoding of a value
- * -- of the type registered for use with
- * -- the extnId object identifier value
- * }
+ * revokedCertificates SEQUENCE OF SEQUENCE {
+ * userCertificate CertificateSerialNumber,
+ * revocationDate ChoiceOfTime,
+ * crlEntryExtensions Extensions OPTIONAL
+ * -- if present, must be v2
+ * } OPTIONAL
+ *<p>
+ * CertificateSerialNumber ::= INTEGER
+ *<p>
+ * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
+ *<p>
+ * Extension ::= SEQUENCE {
+ * extnId OBJECT IDENTIFIER,
+ * critical BOOLEAN DEFAULT FALSE,
+ * extnValue OCTET STRING
+ * -- contains a DER encoding of a value
+ * -- of the type registered for use with
+ * -- the extnId object identifier value
+ * }
* </pre>
*
* @see X509CRL
- *
+ *
* @author Hemma Prafullchandra
* @version 1.4 97/12/10
*/
public abstract class RevokedCertificate extends X509CRLEntry {
- /* implements X509Extension { */
+/* implements X509Extension { */
/**
- * Gets the serial number for this RevokedCertificate, the
- * <em>userCertificate</em>.
+ * Gets the serial number for this RevokedCertificate,
+ * the <em>userCertificate</em>.
*
* @return the serial number.
*/
public abstract BigInteger getSerialNumber();
/**
- * Gets the revocation date for this RevokedCertificate, the
- * <em>revocationDate</em>.
+ * Gets the revocation date for this RevokedCertificate,
+ * the <em>revocationDate</em>.
*
* @return the revocation date.
*/
public abstract Date getRevocationDate();
/**
- * Returns true if this revoked certificate entry has extensions.
- *
+ * Returns true if this revoked certificate entry has
+ * extensions.
+ *
* @return true if this entry has extensions, false otherwise.
*/
public abstract boolean hasExtensions();
/**
* Returns a string representation of this revoked certificate.
- *
+ *
* @return a string representation of this revoked certificate.
*/
public abstract String toString();