summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/x509/CertAttrSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/src/netscape/security/x509/CertAttrSet.java')
-rwxr-xr-xpki/base/util/src/netscape/security/x509/CertAttrSet.java48
1 files changed, 20 insertions, 28 deletions
diff --git a/pki/base/util/src/netscape/security/x509/CertAttrSet.java b/pki/base/util/src/netscape/security/x509/CertAttrSet.java
index 53401132f..e4bef457a 100755
--- a/pki/base/util/src/netscape/security/x509/CertAttrSet.java
+++ b/pki/base/util/src/netscape/security/x509/CertAttrSet.java
@@ -26,14 +26,12 @@ import java.util.Enumeration;
/**
* This interface defines the methods required of a certificate attribute.
* Examples of X.509 certificate attributes are Validity, Issuer_Name, and
- * Subject Name. A CertAttrSet may compromise one attribute or many
- * attributes.
+ * Subject Name. A CertAttrSet may compromise one attribute or many attributes.
* <p>
- * A CertAttrSet itself can also be comprised of other sub-sets.
- * In the case of X.509 V3 certificates, for example, the "extensions"
- * attribute has subattributes, such as those for KeyUsage and
- * AuthorityKeyIdentifier.
- *
+ * A CertAttrSet itself can also be comprised of other sub-sets. In the case of
+ * X.509 V3 certificates, for example, the "extensions" attribute has
+ * subattributes, such as those for KeyUsage and AuthorityKeyIdentifier.
+ *
* @author Amit Kapoor
* @author Hemma Prafullchandra
* @version 1.9
@@ -42,68 +40,62 @@ import java.util.Enumeration;
public interface CertAttrSet {
/**
* Returns a short string describing this certificate attribute.
- *
- * @return value of this certificate attribute in
- * printable form.
+ *
+ * @return value of this certificate attribute in printable form.
*/
String toString();
/**
- * Encodes the attribute to the output stream in a format
- * that can be parsed by the <code>decode</code> method.
- *
+ * Encodes the attribute to the output stream in a format that can be parsed
+ * by the <code>decode</code> method.
+ *
* @param out the OutputStream to encode the attribute to.
*
* @exception CertificateException on encoding or validity errors.
* @exception IOException on other errors.
*/
- void encode(OutputStream out)
- throws CertificateException, IOException;
+ void encode(OutputStream out) throws CertificateException, IOException;
/**
* Decodes the attribute in the input stream.
- *
+ *
* @param in the InputStream to read the encoded attribute from.
*
* @exception CertificateException on decoding or validity errors.
* @exception IOException on other errors.
*/
- void decode(InputStream in)
- throws CertificateException, IOException;
+ void decode(InputStream in) throws CertificateException, IOException;
/**
* Sets an attribute value within this CertAttrSet.
- *
+ *
* @param name the name of the attribute (e.g. "x509.info.key")
* @param obj the attribute object.
*
* @exception CertificateException on attribute handling errors.
* @exception IOException on other errors.
*/
- void set(String name, Object obj)
- throws CertificateException, IOException;
+ void set(String name, Object obj) throws CertificateException, IOException;
/**
* Gets an attribute value for this CertAttrSet.
- *
+ *
* @param name the name of the attribute to return.
*
* @exception CertificateException on attribute handling errors.
* @exception IOException on other errors.
*/
- Object get(String name)
- throws CertificateException, IOException;
+ Object get(String name) throws CertificateException, IOException;
/**
* Deletes an attribute value from this CertAttrSet.
- *
+ *
* @param name the name of the attribute to delete.
*
* @exception CertificateException on attribute handling errors.
* @exception IOException on other errors.
*/
- void delete(String name)
- throws CertificateException, IOException;
+ void delete(String name) throws CertificateException, IOException;
/**
* Returns an enumeration of the names of the attributes existing within
@@ -112,7 +104,7 @@ public interface CertAttrSet {
* @return an enumeration of the attribute names.
*/
Enumeration getElements();
-
+
/**
* Returns the name (identifier) of this CertAttrSet.
*