jdk/src/java.base/share/classes/sun/security/provider/certpath/URICertStore.java
changeset 32649 2ee9017c7597
parent 32502 03f7450aec42
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    89 
    89 
    90     private static final Debug debug = Debug.getInstance("certpath");
    90     private static final Debug debug = Debug.getInstance("certpath");
    91 
    91 
    92     // interval between checks for update of cached Certificates/CRLs
    92     // interval between checks for update of cached Certificates/CRLs
    93     // (30 seconds)
    93     // (30 seconds)
    94     private final static int CHECK_INTERVAL = 30 * 1000;
    94     private static final int CHECK_INTERVAL = 30 * 1000;
    95 
    95 
    96     // size of the cache (see Cache class for sizing recommendations)
    96     // size of the cache (see Cache class for sizing recommendations)
    97     private final static int CACHE_SIZE = 185;
    97     private static final int CACHE_SIZE = 185;
    98 
    98 
    99     // X.509 certificate factory instance
    99     // X.509 certificate factory instance
   100     private final CertificateFactory factory;
   100     private final CertificateFactory factory;
   101 
   101 
   102     // cached Collection of X509Certificates (may be empty, never null)
   102     // cached Collection of X509Certificates (may be empty, never null)