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

remote.server.InputStream Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package remote.server;

import java.io.IOException;
import java.io.ObjectInputStream;

public class InputStream extends ObjectInputStream {
	private final RemoteFactory factory;

	public InputStream(final java.io.InputStream in, final RemoteFactory factory) throws IOException {
		super(in);
		this.factory = factory;
	}

	public RemoteFactory getFactory() {
		return factory;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy