Home | History | Annotate | Download | only in cert

Lines Matching defs:maxCRL

83     private BigInteger maxCRL;
400 * @param maxCRL the maximum CRL number accepted (or {@code null})
402 public void setMaxCRLNumber(BigInteger maxCRL) {
403 this.maxCRL = maxCRL;
525 return maxCRL;
579 if (maxCRL != null)
580 sb.append(" maxCRLNumber: " + maxCRL + "\n");
621 if ((minCRL != null) || (maxCRL != null)) {
655 if (maxCRL != null) {
656 if (crlNum.compareTo(maxCRL) > 0) {