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

me.lightspeed7.mongofs.url.MongoFileURLStreamHandlerFactory Maven / Gradle / Ivy

Go to download

An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports. Compressed file storage, zip files, temporary files

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