link start!
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package net.sourceforge.jtds.jdbc.cache;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public interface StatementCache {
|
||||
Object get(String str);
|
||||
|
||||
Collection getObsoleteHandles(Collection collection);
|
||||
|
||||
void put(String str, Object obj);
|
||||
|
||||
void remove(String str);
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package net.sourceforge.jtds.ssl;
|
||||
|
||||
public interface Ssl {
|
||||
public static final int HS_HEADER_SIZE = 4;
|
||||
public static final String SSL_AUTHENTICATE = "authenticate";
|
||||
public static final String SSL_OFF = "off";
|
||||
public static final String SSL_REQUEST = "request";
|
||||
public static final String SSL_REQUIRE = "require";
|
||||
public static final int TLS_HEADER_SIZE = 5;
|
||||
public static final byte TYPE_ALERT = (byte) 21;
|
||||
public static final byte TYPE_APPLICATIONDATA = (byte) 23;
|
||||
public static final byte TYPE_CHANGECIPHERSPEC = (byte) 20;
|
||||
public static final int TYPE_CLIENTHELLO = 1;
|
||||
public static final int TYPE_CLIENTKEYEXCHANGE = 16;
|
||||
public static final byte TYPE_HANDSHAKE = (byte) 22;
|
||||
}
|
||||
Reference in New Issue
Block a user