10 lines
210 B
Java
10 lines
210 B
Java
package oracle.net.resolver;
|
|
|
|
import oracle.net.ns.NetException;
|
|
|
|
public interface NamingAdapterInterface {
|
|
public static final boolean DEBUG = false;
|
|
|
|
String resolve(String str) throws NetException;
|
|
}
|