Class Http5FileProvider
java.lang.Object
org.apache.commons.vfs2.provider.AbstractVfsComponent
org.apache.commons.vfs2.provider.AbstractVfsContainer
org.apache.commons.vfs2.provider.AbstractFileProvider
org.apache.commons.vfs2.provider.AbstractOriginatingFileProvider
org.apache.commons.vfs2.provider.http5.Http5FileProvider
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- FileProvider,- VfsComponent
- Direct Known Subclasses:
- Http5sFileProvider
FileProvider implementation using HttpComponents HttpClient v5 library.- Since:
- 2.5.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected org.apache.hc.client5.http.classic.HttpClientcreateHttpClient(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) Create anHttpClientobject for an http4 file system.protected org.apache.hc.client5.http.impl.classic.HttpClientBuildercreateHttpClientBuilder(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) Create anHttpClientBuilderobject.protected org.apache.hc.client5.http.protocol.HttpClientContextcreateHttpClientContext(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions, UserAuthenticationData authData) Create anHttpClientContextobject for an http4 file system.protected SSLContextcreateSSLContext(Http5FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) CreateSSLContextfor HttpClient.protected FileSystemdoCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) Creates aFileSystem.Gets the file system capabilities.Gets the FileSystemConfigBuilder.Methods inherited from class org.apache.commons.vfs2.provider.AbstractOriginatingFileProviderfindFile, findFile, getFileSystemMethods inherited from class org.apache.commons.vfs2.provider.AbstractFileProvideraddFileSystem, close, closeFileSystem, createFileSystem, findFileSystem, freeUnusedResources, getFileNameParser, parseUri, setFileNameParserMethods inherited from class org.apache.commons.vfs2.provider.AbstractVfsContaineraddComponent, removeComponentMethods inherited from class org.apache.commons.vfs2.provider.AbstractVfsComponentgetContext, getLogger, init, setContext, setLogger
- 
Constructor Details- 
Http5FileProviderpublic Http5FileProvider()Constructs a new provider.
 
- 
- 
Method Details- 
createHttpClientprotected org.apache.hc.client5.http.classic.HttpClient createHttpClient(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) throws FileSystemException Create anHttpClientobject for an http4 file system.- Parameters:
- builder- Configuration options builder for http4 provider
- rootName- The root path
- fileSystemOptions- The file system options
- Returns:
- an HttpClientobject
- Throws:
- FileSystemException- if an error occurs.
 
- 
createHttpClientBuilderprotected org.apache.hc.client5.http.impl.classic.HttpClientBuilder createHttpClientBuilder(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) throws FileSystemException Create anHttpClientBuilderobject. Invoked bycreateHttpClient(Http5FileSystemConfigBuilder, GenericFileName, FileSystemOptions).- Parameters:
- builder- Configuration options builder for HTTP4 provider
- rootName- The root path
- fileSystemOptions- The FileSystem options
- Returns:
- an HttpClientBuilderobject
- Throws:
- FileSystemException- if an error occurs
 
- 
createHttpClientContextprotected org.apache.hc.client5.http.protocol.HttpClientContext createHttpClientContext(Http5FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions, UserAuthenticationData authData) Create anHttpClientContextobject for an http4 file system.- Parameters:
- builder- Configuration options builder for http4 provider
- rootName- The root path
- fileSystemOptions- The FileSystem options
- authData- The- UserAuthenticationDataobject
- Returns:
- an HttpClientContextobject
 
- 
createSSLContextprotected SSLContext createSSLContext(Http5FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) throws FileSystemException CreateSSLContextfor HttpClient. Invoked bycreateHttpClientBuilder(Http5FileSystemConfigBuilder, GenericFileName, FileSystemOptions).- Parameters:
- builder- Configuration options builder for HTTP4 provider
- fileSystemOptions- The FileSystem options
- Returns:
- a SSLContextfor HttpClient
- Throws:
- FileSystemException- if an error occurs
 
- 
doCreateFileSystemprotected FileSystem doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) throws FileSystemException Description copied from class:AbstractOriginatingFileProviderCreates aFileSystem. If the returned FileSystem implementsVfsComponent, it will be initialized.- Specified by:
- doCreateFileSystemin class- AbstractOriginatingFileProvider
- Parameters:
- name- The name of the root file of the file system to create.
- fileSystemOptions- The FileSystem options.
- Returns:
- The FileSystem, never null.
- Throws:
- FileSystemException- if an error occurs.
 
- 
getCapabilitiesDescription copied from interface:FileProviderGets the file system capabilities.These are the same as on the file system, but available before the first file system was instantiated. - Returns:
- a Collection of the file systems Capabilities.
 
- 
getConfigBuilderDescription copied from class:AbstractFileProviderGets the FileSystemConfigBuilder.- Specified by:
- getConfigBuilderin interface- FileProvider
- Overrides:
- getConfigBuilderin class- AbstractFileProvider
- Returns:
- the FileSystemConfigBuilder.
 
 
-