Class X509PublicKeyCertificate

java.lang.Object
  |
  +--OoctiObject
        |
        +--Storage
              |
              +--Certificate
                    |
                    +--X509PublicKeyCertificate

public class X509PublicKeyCertificate
extends Certificate

Hold X.509 public key certificates objects.


Field Summary
 java.lang.String id
          Key identifier for public/private key pair.
 java.lang.String issuer
          DER-encoding of the certificate issuer name.
 java.lang.String serialNumber
          DER-encoding of the certificate serial number.
 java.lang.String subject
          DER-encoding of the certificate subject name.
 java.lang.String value
          BER-encoding of the certificate.
 
Constructor Summary
X509PublicKeyCertificate()
           
 
Methods inherited from class OoctiObject
getAttributeValue, getObjectSize, setAttributeValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

subject

public java.lang.String subject
DER-encoding of the certificate subject name. (DER - Distinguished Encoding Rules, as defined in X.690)

id

public java.lang.String id
Key identifier for public/private key pair.

issuer

public java.lang.String issuer
DER-encoding of the certificate issuer name. (DER - Distinguished Encoding Rules, as defined in X.690)

serialNumber

public java.lang.String serialNumber
DER-encoding of the certificate serial number.

value

public java.lang.String value
BER-encoding of the certificate. (BER-Basic Encoding Rule, as defined in X.690)
Constructor Detail

X509PublicKeyCertificate

public X509PublicKeyCertificate()