1 7 8 15 16 package javax.net.ssl; 17 18 import java.util.Enumeration; 19 20 46 public interface SSLSessionContext 47 { 48 49 56 public SSLSession getSession(byte[] sessionId); 57 58 64 public Enumeration getIds(); 65 66 84 public void setSessionTimeout(int seconds) throws IllegalArgumentException; 85 86 103 public int getSessionTimeout(); 104 105 115 public void setSessionCacheSize(int size) throws IllegalArgumentException; 116 117 125 public int getSessionCacheSize(); 126 } 127 | Popular Tags |