Package org.bouncycastle.est
Class CACertsResponse
- java.lang.Object
-
- org.bouncycastle.est.CACertsResponse
-
public class CACertsResponse extends java.lang.Object
Holder class for a SimplePKIResponse containing the details making up /cacerts response.
-
-
Constructor Summary
Constructors Constructor Description CACertsResponse(org.bouncycastle.util.Store<X509CertificateHolder> store, org.bouncycastle.util.Store<X509CRLHolder> crlHolderStore, ESTRequest requestToRetry, Source session, boolean trusted)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.util.Store<X509CertificateHolder>
getCertificateStore()
org.bouncycastle.util.Store<X509CRLHolder>
getCrlStore()
ESTRequest
getRequestToRetry()
java.lang.Object
getSession()
boolean
hasCertificates()
boolean
hasCRLs()
boolean
isTrusted()
-
-
-
Constructor Detail
-
CACertsResponse
public CACertsResponse(org.bouncycastle.util.Store<X509CertificateHolder> store, org.bouncycastle.util.Store<X509CRLHolder> crlHolderStore, ESTRequest requestToRetry, Source session, boolean trusted)
-
-
Method Detail
-
hasCertificates
public boolean hasCertificates()
-
getCertificateStore
public org.bouncycastle.util.Store<X509CertificateHolder> getCertificateStore()
-
hasCRLs
public boolean hasCRLs()
-
getCrlStore
public org.bouncycastle.util.Store<X509CRLHolder> getCrlStore()
-
getRequestToRetry
public ESTRequest getRequestToRetry()
-
getSession
public java.lang.Object getSession()
-
isTrusted
public boolean isTrusted()
-
-