link start!
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package oracle.net.TNSAddress;
|
||||
|
||||
import oracle.net.nl.NLException;
|
||||
import oracle.net.nl.NVPair;
|
||||
|
||||
public interface SchemaObject {
|
||||
public static final int ADDR = 0;
|
||||
public static final int ADDR_LIST = 1;
|
||||
public static final int ALIAS = 4;
|
||||
public static final int DB_SERVICE = 6;
|
||||
public static final int DESC = 2;
|
||||
public static final int DESC_LIST = 3;
|
||||
public static final int SERVICE = 5;
|
||||
|
||||
void initFromNVPair(NVPair nVPair) throws SOException;
|
||||
|
||||
void initFromString(String str) throws NLException, SOException;
|
||||
|
||||
int isA();
|
||||
|
||||
String isA_String();
|
||||
|
||||
String toString();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package oracle.net.TNSAddress;
|
||||
|
||||
public interface SchemaObjectFactoryInterface {
|
||||
public static final int ADDR = 0;
|
||||
public static final int ADDR_LIST = 1;
|
||||
public static final int ALIAS = 4;
|
||||
public static final int DB_SERVICE = 6;
|
||||
public static final int DESC = 2;
|
||||
public static final int DESC_LIST = 3;
|
||||
public static final int SERVICE = 5;
|
||||
|
||||
SchemaObject create(int i);
|
||||
}
|
||||
Reference in New Issue
Block a user