Package io.quarkus.vault.pki
Class TidyOptions
- java.lang.Object
-
- io.quarkus.vault.pki.TidyOptions
-
public class TidyOptions extends Object
Options for tidying up the engine's storage.
-
-
Field Summary
Fields Modifier and Type Field Description StringsafetyBufferA duration used as a safety buffer to ensure certificates are not expunged prematurely; as an example, this can keep certificates from being removed from the CRL that, due to clock skew, might still be considered valid on other hosts.BooleantidyCertStoreTidy up the certificate store?BooleantidyRevokedCertsTidy up the revoked certificates?
-
Constructor Summary
Constructors Constructor Description TidyOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TidyOptionssetSafetyBuffer(String safetyBuffer)TidyOptionssetTidyCertStore(Boolean tidyCertStore)TidyOptionssetTidyRevokedCerts(Boolean tidyRevokedCerts)
-
-
-
Field Detail
-
tidyCertStore
public Boolean tidyCertStore
Tidy up the certificate store?
-
tidyRevokedCerts
public Boolean tidyRevokedCerts
Tidy up the revoked certificates?
-
safetyBuffer
public String safetyBuffer
A duration used as a safety buffer to ensure certificates are not expunged prematurely; as an example, this can keep certificates from being removed from the CRL that, due to clock skew, might still be considered valid on other hosts.Value is specified as a string duration with time suffix. Hour is the largest supported suffix.
-
-
Method Detail
-
setTidyCertStore
public TidyOptions setTidyCertStore(Boolean tidyCertStore)
-
setTidyRevokedCerts
public TidyOptions setTidyRevokedCerts(Boolean tidyRevokedCerts)
-
setSafetyBuffer
public TidyOptions setSafetyBuffer(String safetyBuffer)
-
-