me.lightspeed7.mongofs.url.MongoFileURLStreamHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoFS Show documentation
Show all versions of mongoFS Show documentation
An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports.
Compressed file storage, zip files, temporary files
package me.lightspeed7.mongofs.url;
import java.net.URLStreamHandler;
import java.net.URLStreamHandlerFactory;
public class MongoFileURLStreamHandlerFactory implements URLStreamHandlerFactory {
@Override
public URLStreamHandler createURLStreamHandler(final String protocol) {
if (protocol.equals(MongoFileUrl.PROTOCOL)) {
return new Handler();
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy