use of org.apache.commons.vfs2.provider.url.UrlFileProvider in project commons-vfs by apache.
the class ResourceProviderTestCase method prepare.
/**
* Prepares the file system manager. This implementation does nothing.
*/
@Override
public void prepare(final DefaultFileSystemManager manager) throws Exception {
manager.addProvider("res", new ResourceFileProvider());
manager.addProvider("file", new UrlFileProvider());
manager.addProvider("jar", new JarFileProvider());
}
Aggregations