All Packages Class Hierarchy This Package Previous Next Index
Class netscape.security.x509.CertificateIssuerUniqueIdentity
netscape.security.x509.CertificateIssuerUniqueIdentity
- public class CertificateIssuerUniqueIdentity
- implements CertAttrSet
This class defines the subject/issuer unique identity attribute
for the Certificate.
- See Also:
- CertAttrSet
-
ID
-
-
IDENT
- Identifier for this attribute, to be used with the
get, set, delete methods of Certificate, x509 type.
-
NAME
- Sub attributes name for this CertAttrSet.
-
CertificateIssuerUniqueIdentity(DerInputStream)
- Create the object, decoding the values from the passed DER stream.
-
CertificateIssuerUniqueIdentity(DerValue)
- Create the object, decoding the values from the passed DER value.
-
CertificateIssuerUniqueIdentity(InputStream)
- Create the object, decoding the values from the passed stream.
-
CertificateIssuerUniqueIdentity(UniqueIdentity)
- Default constructor for the certificate attribute.
-
decode(InputStream)
- Decode the identity in DER form from the stream.
-
delete(String)
- Delete the attribute value.
-
encode(OutputStream)
- Encode the identity in DER form to the stream.
-
get(String)
- Get the attribute value.
-
getElements()
- Return an enumeration of names of attributes existing within this
attribute.
-
getName()
- Return the name of this attribute.
-
set(String, Object)
- Set the attribute value.
-
toString()
- Return the identity as user readable string.
IDENT
public static final String IDENT
- Identifier for this attribute, to be used with the
get, set, delete methods of Certificate, x509 type.
NAME
public static final String NAME
- Sub attributes name for this CertAttrSet.
ID
public static final String ID
CertificateIssuerUniqueIdentity
public CertificateIssuerUniqueIdentity(UniqueIdentity id)
- Default constructor for the certificate attribute.
- Parameters:
- key - the UniqueIdentity
CertificateIssuerUniqueIdentity
public CertificateIssuerUniqueIdentity(DerInputStream in) throws IOException
- Create the object, decoding the values from the passed DER stream.
- Parameters:
- in - the DerInputStream to read the UniqueIdentity from.
- Throws: IOException
- on decoding errors.
CertificateIssuerUniqueIdentity
public CertificateIssuerUniqueIdentity(InputStream in) throws IOException
- Create the object, decoding the values from the passed stream.
- Parameters:
- in - the InputStream to read the UniqueIdentity from.
- Throws: IOException
- on decoding errors.
CertificateIssuerUniqueIdentity
public CertificateIssuerUniqueIdentity(DerValue val) throws IOException
- Create the object, decoding the values from the passed DER value.
- Parameters:
- in - the DerValue to read the UniqueIdentity from.
- Throws: IOException
- on decoding errors.
toString
public String toString()
- Return the identity as user readable string.
decode
public void decode(InputStream in) throws IOException
- Decode the identity in DER form from the stream.
- Parameters:
- in - the InputStream to unmarshal the contents from.
- Throws: IOException
- on errors.
encode
public void encode(OutputStream out) throws IOException
- Encode the identity in DER form to the stream.
- Parameters:
- out - the DerOutputStream to marshal the contents to.
- Throws: IOException
- on errors.
set
public void set(String name,
Object obj) throws IOException
- Set the attribute value.
get
public Object get(String name) throws IOException
- Get the attribute value.
delete
public void delete(String name) throws IOException
- Delete the attribute value.
getElements
public Enumeration getElements()
- Return an enumeration of names of attributes existing within this
attribute.
getName
public String getName()
- Return the name of this attribute.
All Packages Class Hierarchy This Package Previous Next Index