| java.lang.Object sun.security.x509.CertificateSubjectUniqueIdentity
CertificateSubjectUniqueIdentity | public class CertificateSubjectUniqueIdentity implements CertAttrSet(Code) | | This class defines the subject/issuer unique identity attribute
for the Certificate.
author: Amit Kapoor author: Hemma Prafullchandra version: 1.10 See Also: CertAttrSet |
Field Summary | |
final public static String | ID | final public static String | IDENT Identifier for this attribute, to be used with the
get, set, delete methods of Certificate, x509 type. | final public static String | NAME Sub attributes name for this CertAttrSet. |
IDENT | final public static String IDENT(Code) | | Identifier for this attribute, to be used with the
get, set, delete methods of Certificate, x509 type.
|
NAME | final public static String NAME(Code) | | Sub attributes name for this CertAttrSet.
|
CertificateSubjectUniqueIdentity | public CertificateSubjectUniqueIdentity(UniqueIdentity id)(Code) | | Default constructor for the certificate attribute.
Parameters: key - the UniqueIdentity |
CertificateSubjectUniqueIdentity | public CertificateSubjectUniqueIdentity(DerInputStream in) throws IOException(Code) | | Create the object, decoding the values from the passed DER stream.
Parameters: in - the DerInputStream to read the UniqueIdentity from. exception: IOException - on decoding errors. |
CertificateSubjectUniqueIdentity | public CertificateSubjectUniqueIdentity(InputStream in) throws IOException(Code) | | Create the object, decoding the values from the passed stream.
Parameters: in - the InputStream to read the UniqueIdentity from. exception: IOException - on decoding errors. |
CertificateSubjectUniqueIdentity | public CertificateSubjectUniqueIdentity(DerValue val) throws IOException(Code) | | Create the object, decoding the values from the passed DER value.
Parameters: in - the DerValue to read the UniqueIdentity from. exception: IOException - on decoding errors. |
decode | public void decode(InputStream in) throws IOException(Code) | | Decode the identity in DER form from the stream.
Parameters: in - the InputStream to unmarshal the contents from. exception: IOException - on errors. |
encode | public void encode(OutputStream out) throws IOException(Code) | | Encode the identity in DER form to the stream.
Parameters: out - the DerOutputStream to marshal the contents to. exception: IOException - on errors. |
getElements | public Enumeration getElements()(Code) | | Return an enumeration of names of attributes existing within this
attribute.
|
getName | public String getName()(Code) | | Return the name of this attribute.
|
toString | public String toString()(Code) | | Return the identity as user readable string.
|
|
|