com.ibm.security12.sun.security.x509
Class CertificateSerialNumber

java.lang.Object
  |
  +--com.ibm.security12.sun.security.x509.CertificateSerialNumber

public class CertificateSerialNumber
extends Object
implements CertAttrSet

This class defines the SerialNumber attribute for the Certificate.

Version:
1.7
Author:
Amit Kapoor, Hemma Prafullchandra
See Also:
CertAttrSet

Field Summary
static String IDENT
          Identifier for this attribute, to be used with the get, set, delete methods of Certificate, x509 type.
static String NAME
          Sub attributes name for this CertAttrSet.
static String NUMBER
           
 
Constructor Summary
CertificateSerialNumber(java.math.BigInteger num)
          Default constructor for the certificate attribute.
CertificateSerialNumber(DerInputStream in)
          Create the object, decoding the values from the passed DER stream.
CertificateSerialNumber(DerValue val)
          Create the object, decoding the values from the passed DerValue.
CertificateSerialNumber(InputStream in)
          Create the object, decoding the values from the passed stream.
CertificateSerialNumber(int num)
          Default constructor for the certificate attribute.
 
Method Summary
 void decode(InputStream in)
          Decode the serial number in DER form from the stream.
 void delete(String name)
          Delete the attribute value.
 void encode(OutputStream out)
          Encode the serial number in DER form to the stream.
 Object get(String name)
          Get the attribute value.
 Enumeration getElements()
          Return an enumeration of names of attributes existing within this attribute.
 String getName()
          Return the name of this attribute.
 void set(String name, Object obj)
          Set the attribute value.
 String toString()
          Return the serial number as user readable string.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

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.

NUMBER

public static final String NUMBER
Constructor Detail

CertificateSerialNumber

public CertificateSerialNumber(java.math.BigInteger num)
Default constructor for the certificate attribute.
Parameters:
serial - the serial number for the certificate.

CertificateSerialNumber

public CertificateSerialNumber(int num)
Default constructor for the certificate attribute.
Parameters:
serial - the serial number for the certificate.

CertificateSerialNumber

public CertificateSerialNumber(DerInputStream in)
                        throws IOException
Create the object, decoding the values from the passed DER stream.
Parameters:
in - the DerInputStream to read the serial number from.
Throws:
IOException - on decoding errors.

CertificateSerialNumber

public CertificateSerialNumber(InputStream in)
                        throws IOException
Create the object, decoding the values from the passed stream.
Parameters:
in - the InputStream to read the serial number from.
Throws:
IOException - on decoding errors.

CertificateSerialNumber

public CertificateSerialNumber(DerValue val)
                        throws IOException
Create the object, decoding the values from the passed DerValue.
Parameters:
val - the DER encoded value.
Throws:
IOException - on decoding errors.
Method Detail

toString

public String toString()
Return the serial number as user readable string.
Specified by:
toString in interface CertAttrSet
Overrides:
toString in class Object

encode

public void encode(OutputStream out)
            throws IOException
Encode the serial number in DER form to the stream.
Specified by:
encode in interface CertAttrSet
Parameters:
out - the DerOutputStream to marshal the contents to.
Throws:
IOException - on errors.

decode

public void decode(InputStream in)
            throws IOException
Decode the serial number in DER form from the stream.
Specified by:
decode in interface CertAttrSet
Parameters:
in - the InputStream to marshal the contents from.
Throws:
IOException - on errors.

set

public void set(String name,
                Object obj)
         throws IOException
Set the attribute value.
Specified by:
set in interface CertAttrSet

get

public Object get(String name)
           throws IOException
Get the attribute value.
Specified by:
get in interface CertAttrSet

delete

public void delete(String name)
            throws IOException
Delete the attribute value.
Specified by:
delete in interface CertAttrSet

getElements

public Enumeration getElements()
Return an enumeration of names of attributes existing within this attribute.
Specified by:
getElements in interface CertAttrSet

getName

public String getName()
Return the name of this attribute.
Specified by:
getName in interface CertAttrSet