cached jwk services expire after an hour

pull/477/head
Justin Richer 11 years ago
parent 7e51a361ba
commit 21068f57e6

@ -20,6 +20,7 @@
package org.mitre.jwt.signer.service.impl;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import org.apache.http.client.HttpClient;
import org.apache.http.impl.client.DefaultHttpClient;
@ -54,6 +55,7 @@ public class JWKSetSigningAndValidationServiceCacheService {
public JWKSetSigningAndValidationServiceCacheService() {
this.cache = CacheBuilder.newBuilder()
.expireAfterWrite(1, TimeUnit.HOURS) // expires 1 hour after fetch
.maximumSize(100)
.build(new JWKSetVerifierFetcher());
}

Loading…
Cancel
Save