Searched refs:sessionCache (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSessionContextImpl.java48 private Cache sessionCache; // session cache, session id as key field in class:SSLSessionContextImpl
61 sessionCache = Cache.newSoftMemoryCache(cacheLimit, timeout);
74 (SSLSessionImpl)sessionCache.get(new SessionId(sessionId));
87 sessionCache.accept(scVisitor);
106 sessionCache.setTimeout(seconds);
129 sessionCache.setCapacity(size);
181 sessionCache.put(s.getSessionId(), s);
194 SSLSessionImpl s = (SSLSessionImpl)sessionCache.get(key);
196 sessionCache.remove(key);

Completed in 28 milliseconds