summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/RFC1779StrConverter.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/util/src/netscape/security/x509/RFC1779StrConverter.java')
-rw-r--r--base/util/src/netscape/security/x509/RFC1779StrConverter.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/base/util/src/netscape/security/x509/RFC1779StrConverter.java b/base/util/src/netscape/security/x509/RFC1779StrConverter.java
index 6527d0fff..e7411801c 100644
--- a/base/util/src/netscape/security/x509/RFC1779StrConverter.java
+++ b/base/util/src/netscape/security/x509/RFC1779StrConverter.java
@@ -24,17 +24,17 @@ import netscape.security.util.ObjectIdentifier;
/**
* Converts a RFC 1779 string to a X500Name, RDN or AVA object and vice versa.
- *
+ *
* @see LdapDNStrConverter
* @see LdapV3DNStrConverter
- *
+ *
* @author Lily Hsiao, Slava Galperin at Netscape Communications, Inc.
*/
public class RFC1779StrConverter extends LdapV3DNStrConverter {
//
// Constructors.
- //
+ //
/**
* Constructs a RFC1779StrConverter using the global default
@@ -47,7 +47,7 @@ public class RFC1779StrConverter extends LdapV3DNStrConverter {
/**
* Constructs a RFC1779StrConverter using the specified X500NameAttrMap
* and boolean for whether to accept OIDs not in the X500NameAttrMap.
- *
+ *
* @param attributeMap A X500NameAttrMap to use for this converter.
* @param doAcceptUnknownOids Accept unregistered attributes, i.e. OIDs
* not in the map).
@@ -64,11 +64,11 @@ public class RFC1779StrConverter extends LdapV3DNStrConverter {
/**
* Converts a OID to a attribute keyword in a Ldap DN string or
* to a "OID.1.2.3.4" string syntax as defined in RFC1779.
- *
+ *
* @param oid an ObjectIdentifier.
- *
+ *
* @return a attribute keyword or "OID.1.2.3.4" string.
- *
+ *
* @exception IOException if an error occurs during the conversion.
*/
public String encodeOID(ObjectIdentifier oid)
@@ -85,7 +85,7 @@ public class RFC1779StrConverter extends LdapV3DNStrConverter {
/**
* Converts a attribute value as a DerValue to a string in a
* RFC1779 Ldap DN string.
- *
+ *
* @param attrValue an attribute value.
* @param oid ObjectIdentifier for the attribute.
* @return a string in RFC1779 syntax.