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

org.broadinstitute.http.nio.HttpsFileSystemProvider Maven / Gradle / Ivy

The newest version!
package org.broadinstitute.http.nio;

/**
 * Read-only {@link java.nio.file.spi.FileSystemProvider} for HTTPS.
 *
 * @author Daniel Gomez-Sanchez (magicDGS)
 */
public final class HttpsFileSystemProvider extends HttpAbstractFileSystemProvider {

    /** Scheme for HTTPS files. */
    public static final String SCHEME = "https";

    /**
     * {@inheritDoc}
     *
     * @return {@link #SCHEME}.
     */
    @Override
    public String getScheme() {
        return SCHEME;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy