14 lines
264 B
Java
14 lines
264 B
Java
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);
|
|
}
|