Package org.xipki.ocsp.server
Class RequestOption
- java.lang.Object
-
- org.xipki.ocsp.server.RequestOption
-
public class RequestOption extends Object
OCSP request option.- Since:
- 2.0.0
- Author:
- Lijun Liao (xipki)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanallows(org.xipki.security.HashAlgo hashAlgo)org.xipki.security.CertpathValidationModelgetCertpathValidationModel()Set<org.xipki.security.X509Cert>getCerts()Set<org.xipki.security.HashAlgo>getHashAlgos()intgetMaxRequestListCount()intgetMaxRequestSize()intgetNonceMaxLen()intgetNonceMinLen()QuadrupleStategetNonceOccurrence()Set<org.xipki.security.X509Cert>getTrustanchors()booleanisSignatureRequired()booleanisValidateSignature()booleanisVersionAllowed(Integer version)booleansupportsHttpGet()
-
-
-
Method Detail
-
getHashAlgos
public Set<org.xipki.security.HashAlgo> getHashAlgos()
-
isSignatureRequired
public boolean isSignatureRequired()
-
isValidateSignature
public boolean isValidateSignature()
-
supportsHttpGet
public boolean supportsHttpGet()
-
getNonceOccurrence
public QuadrupleState getNonceOccurrence()
-
getMaxRequestListCount
public int getMaxRequestListCount()
-
getMaxRequestSize
public int getMaxRequestSize()
-
getNonceMinLen
public int getNonceMinLen()
-
getNonceMaxLen
public int getNonceMaxLen()
-
allows
public boolean allows(org.xipki.security.HashAlgo hashAlgo)
-
getCertpathValidationModel
public org.xipki.security.CertpathValidationModel getCertpathValidationModel()
-
getTrustanchors
public Set<org.xipki.security.X509Cert> getTrustanchors()
-
isVersionAllowed
public boolean isVersionAllowed(Integer version)
-
getCerts
public Set<org.xipki.security.X509Cert> getCerts()
-
-