summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/x509/GeneralNameInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/src/netscape/security/x509/GeneralNameInterface.java')
-rw-r--r--pki/base/util/src/netscape/security/x509/GeneralNameInterface.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/pki/base/util/src/netscape/security/x509/GeneralNameInterface.java b/pki/base/util/src/netscape/security/x509/GeneralNameInterface.java
index 962206e00..6d86e11ce 100644
--- a/pki/base/util/src/netscape/security/x509/GeneralNameInterface.java
+++ b/pki/base/util/src/netscape/security/x509/GeneralNameInterface.java
@@ -22,9 +22,9 @@ import java.io.IOException;
import netscape.security.util.DerOutputStream;
/**
- * This interface specifies the abstract methods which have to be
- * implemented by all the members of the GeneralNames ASN.1 object.
- *
+ * This interface specifies the abstract methods which have to be implemented by
+ * all the members of the GeneralNames ASN.1 object.
+ *
* @author Amit Kapoor
* @author Hemma Prafullchandra
* @version 1.6
@@ -44,17 +44,15 @@ public interface GeneralNameInterface extends java.io.Serializable {
public static final int NAME_OID = 8;
/**
- * Return the type of the general name, as
- * defined above.
+ * Return the type of the general name, as defined above.
*/
int getType();
/**
* Encode the name to the specified DerOutputStream.
- *
+ *
* @param out the DerOutputStream to encode the GeneralName to.
- * @exception IOException thrown if the GeneralName could not be
- * encoded.
+ * @exception IOException thrown if the GeneralName could not be encoded.
*/
void encode(DerOutputStream out) throws IOException;
}