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.
-
CertificateInfo()
- Empty constructor for Streamable
-
CertificateInfo(Scope, CertificateType, Date, Date, int)
- Constructor setting the values that objects of the class can carry.
-
getEnd()
- Get the ending date
-
getScope()
- Get the scope.
-
getStart()
- Get the starting date
-
getState()
- Get the state.
-
getType()
- Get the type.
CertificateInfo
public CertificateInfo()
- Empty constructor for Streamable
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
getScope
public Scope getScope()
- Get the scope.
- Returns:
- the scope
getType
public CertificateType getType()
- Get the type.
- Returns:
- the type
getState
public int getState()
- Get the state.
- Returns:
- the state
getStart
public Date getStart()
- Get the starting date
- Returns:
- the starting date
getEnd
public Date getEnd()
- Get the ending date
- Returns:
- the ending date
All Packages Class Hierarchy This Package Previous Next Index