Subversion Repositories Projects

Rev

Blame | Last modification | View Log | RSS feed

package dongfang.mkt.comm;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public interface MKConnection {
        void init(String id) throws IOException;
        InputStream getInputStream() throws IOException ;
        OutputStream getOutputStream() throws IOException ;
}