All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class semper.certificate.CertificateInfo

java.lang.Object
   |
   +----semper.certificate.CertificateInfo

public class CertificateInfo
extends Object
implements Serializable
A class containing certificate parameters to be transmitted from user to CA. It is used internally in the CertificateManager.


Constructor Index

 o CertificateInfo()
Empty constructor for Streamable
 o CertificateInfo(Scope, CertificateType, Date, Date, int)
Constructor setting the values that objects of the class can carry.

Method Index

 o getEnd()
Get the ending date
 o getScope()
Get the scope.
 o getStart()
Get the starting date
 o getState()
Get the state.
 o getType()
Get the type.

Constructors

 o CertificateInfo
 public CertificateInfo()
Empty constructor for Streamable

 o CertificateInfo
 public CertificateInfo(Scope scope,
                        CertificateType type,
                        Date startValid,
                        Date endValid,
                        int state)
Constructor setting the values that objects of the class can carry.

Parameters:
scope - is the integer encoding the scope of the certificate
type - is the integer encoding the type of the certificate
startValid - is the requested start of the validity period
endValid - is the requested ending of the validity period
state - is the integer encoding the state of the certificate

Methods

 o getScope
 public Scope getScope()
Get the scope.

Returns:
the scope
 o getType
 public CertificateType getType()
Get the type.

Returns:
the type
 o getState
 public int getState()
Get the state.

Returns:
the state
 o getStart
 public Date getStart()
Get the starting date

Returns:
the starting date
 o getEnd
 public Date getEnd()
Get the ending date

Returns:
the ending date

All Packages  Class Hierarchy  This Package  Previous  Next  Index