remote.spi.RemoteFactoryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote4j Show documentation
Show all versions of remote4j Show documentation
Thin functional layer on top of RMI.
package remote.spi;
import java.io.IOException;
import java.net.URI;
import remote.RemoteFactory;
public interface RemoteFactoryProvider {
public String getName();
public String[] getSchemes();
public RemoteFactory getFactory(URI uri) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy