link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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);
}