All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.access.AS400Certificate

java.lang.Object
   |
   +----com.ibm.as400.access.AS400Certificate

public class AS400Certificate
extends Object
implements Serializable

The AS400Certificate class represents an X.509 ASN.1 encoded certificate.


Constructor Index

 o AS400Certificate()
Constructs an AS400Certificate object.
 o AS400Certificate(byte[])
Constructs an AS400Certificate object.

Method Index

 o getByteInfo()
Returns the free form byte data.
 o getEncoded()
Returns the ASN.1 encoded certificate value.
 o getInfo()
Returns the free form information.
 o setByteInfo(byte[])
Sets the free form byte data.
 o setEncoded(byte[])
Sets the ASN.1 encoded certificate value.
 o setInfo(String)
Sets the free form string information.

Constructors

 o AS400Certificate
 public AS400Certificate()
Constructs an AS400Certificate object.

 o AS400Certificate
 public AS400Certificate(byte certificate[])
Constructs an AS400Certificate object.

Parameters:
certificate - The ASN.1 encoded X.509 certificate.

Methods

 o getByteInfo
 public byte[] getByteInfo()
Returns the free form byte data.

Returns:
A byte array with free form information.
 o getEncoded
 public byte[] getEncoded()
Returns the ASN.1 encoded certificate value.

Returns:
The ASN.1 encoded X.509 certificate.
 o getInfo
 public String getInfo()
Returns the free form information.

Returns:
The free form string information.
 o setByteInfo
 public void setByteInfo(byte byteData[])
Sets the free form byte data.

Parameters:
byteData - The free form byte array information.
 o setEncoded
 public void setEncoded(byte certificate[])
Sets the ASN.1 encoded certificate value.

Parameters:
certificate - The ASN.1 encoded certificate.
 o setInfo
 public void setInfo(String information)
Sets the free form string information.

Parameters:
information - The free form information.

All Packages  Class Hierarchy  This Package  Previous  Next  Index