link start!
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package oracle.net.resolver;
|
||||
|
||||
import oracle.net.ns.NetException;
|
||||
|
||||
public interface NamingAdapterInterface {
|
||||
public static final boolean DEBUG = false;
|
||||
|
||||
String resolve(String str) throws NetException;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package oracle.net.resolver;
|
||||
|
||||
import oracle.net.TNSAddress.SchemaObject;
|
||||
import oracle.net.nt.ConnStrategy;
|
||||
|
||||
public interface NavSchemaObject extends SchemaObject {
|
||||
public static final String CD = "(CONNECT_DATA=";
|
||||
public static final String CID = "(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))";
|
||||
public static final boolean DEBUG = false;
|
||||
public static final String HC = "(HOP_COUNT=0)";
|
||||
public static final String LB = "(LOAD_BALANCE=yes)";
|
||||
public static final String NFO = "(FAILOVER=false)";
|
||||
public static final String SR = "(SOURCE_ROUTE=yes)";
|
||||
|
||||
void addToString(ConnStrategy connStrategy);
|
||||
|
||||
void navigate(ConnStrategy connStrategy, StringBuffer stringBuffer);
|
||||
}
|
||||
Reference in New Issue
Block a user