All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.remoting.transport.Transport Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.remoting.transport;

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

import org.nakedobjects.metamodel.commons.component.ApplicationScopedComponent;

public interface Transport extends ApplicationScopedComponent {

	void connect() throws IOException;

	void disconnect();

	InputStream getInputStream() throws IOException;
	
	OutputStream getOutputStream() throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy