Files
codeql/java/ql/test/stubs/okhttp-4.9.3/javax/net/ssl/SSLSessionContext.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

17 lines
419 B
Java
Generated

// Generated automatically from javax.net.ssl.SSLSessionContext for testing purposes
package javax.net.ssl;
import java.util.Enumeration;
import javax.net.ssl.SSLSession;
public interface SSLSessionContext
{
Enumeration<byte[]> getIds();
SSLSession getSession(byte[] p0);
int getSessionCacheSize();
int getSessionTimeout();
void setSessionCacheSize(int p0);
void setSessionTimeout(int p0);
}