01: /*
02: * Copyright (c) 1999-2001 Sun Microsystems, Inc., 901 San Antonio Road,
03: * Palo Alto, CA 94303, U.S.A. All Rights Reserved.
04: *
05: * Sun Microsystems, Inc. has intellectual property rights relating
06: * to the technology embodied in this software. In particular, and
07: * without limitation, these intellectual property rights may include
08: * one or more U.S. patents, foreign patents, or pending
09: * applications. Sun, Sun Microsystems, the Sun logo, Java, KJava,
10: * and all Sun-based and Java-based marks are trademarks or
11: * registered trademarks of Sun Microsystems, Inc. in the United
12: * States and other countries.
13: *
14: * This software is distributed under licenses restricting its use,
15: * copying, distribution, and decompilation. No part of this
16: * software may be reproduced in any form by any means without prior
17: * written authorization of Sun and its licensors, if any.
18: *
19: * FEDERAL ACQUISITIONS: Commercial Software -- Government Users
20: * Subject to Standard License Terms and Conditions
21: */
22:
23: package com.sun.portal.cldc.io;
24:
25: import java.io.*;
26: import com.sun.portal.microedition.io.*;
27:
28: /**
29: * Base class for Connection protocols.
30: *
31: * @author Nik Shaylor
32: * @version 1.1 2/21/2000
33: */
34: public interface ConnectionBaseInterface {
35:
36: public Connection openPrim(String name, int mode, boolean timeouts)
37: throws IOException;
38:
39: }
|