All Packages Class Hierarchy This Package Previous Next Index
Class netscape.security.x509.URIName
netscape.security.x509.URIName
- public class URIName
- implements GeneralNameInterface
This class implements the URIName as required by the GeneralNames
ASN.1 object.
- See Also:
- GeneralName, GeneralNames, GeneralNameInterface
-
URIName(DerValue)
- Create the URIName object from the passed encoded Der value.
-
URIName(String)
- Create the URIName object with the specified name.
-
encode(DerOutputStream)
- Encode the URI name into the DerOutputStream.
-
getType()
- Return the type of the GeneralName.
-
toString()
- Convert the name into user readable string.
URIName
public URIName(DerValue derValue) throws IOException
- Create the URIName object from the passed encoded Der value.
- Parameters:
- derValue - the encoded DER URIName.
- Throws: IOException
- on error.
URIName
public URIName(String name)
- Create the URIName object with the specified name.
- Parameters:
- name - the URIName.
getType
public int getType()
- Return the type of the GeneralName.
encode
public void encode(DerOutputStream out) throws IOException
- Encode the URI name into the DerOutputStream.
- Parameters:
- out - the DER stream to encode the URIName to.
- Throws: IOException
- on encoding errors.
toString
public String toString()
- Convert the name into user readable string.
All Packages Class Hierarchy This Package Previous Next Index