Interface ISingleResp
-
- All Known Implementing Classes:
SingleRespBC
public interface ISingleResp
This interface represents the wrapper for SingleResp that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICertificateID
getCertID()
Calls actualgetCertID
method for the wrapped SingleResp object.ICertificateStatus
getCertStatus()
Calls actualgetCertStatus
method for the wrapped SingleResp object.java.util.Date
getNextUpdate()
Calls actualgetNextUpdate
method for the wrapped SingleResp object.java.util.Date
getThisUpdate()
Calls actualgetThisUpdate
method for the wrapped SingleResp object.
-
-
-
Method Detail
-
getCertID
ICertificateID getCertID()
Calls actualgetCertID
method for the wrapped SingleResp object.- Returns:
ICertificateID
the wrapper for the received CertificateID.
-
getCertStatus
ICertificateStatus getCertStatus()
Calls actualgetCertStatus
method for the wrapped SingleResp object.- Returns:
ICertificateStatus
the wrapper for the received CertificateStatus.
-
getNextUpdate
java.util.Date getNextUpdate()
Calls actualgetNextUpdate
method for the wrapped SingleResp object.- Returns:
- date of next update.
-
getThisUpdate
java.util.Date getThisUpdate()
Calls actualgetThisUpdate
method for the wrapped SingleResp object.- Returns:
- date of this update.
-
-