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

remote.spi.RemoteFactoryProvider Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
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