Uses of Class
org.apache.commons.vfs2.FileSystemOptions
Packages that use FileSystemOptions
Package
Description
The public VFS API.
The standard VFS implementation.
The File Provider API, and utility classes.
The BZIP2 File Provider
The compressed file provider
The FTP File Provider.
The GZIP File Provider
The HTTP4 File Provider
The Jar File Provider.
The Local File Provider.
The RAM File Provider.
The Resource File Provider
The SFTP Provider.
The Tar File Provider.
The Temporary Filespace Provider.
The Default File Provider, which wraps java.net.URL.
The Zip File Provider.
Utility classes used by the VFS.
-
Uses of FileSystemOptions in org.apache.commons.vfs2
Methods in org.apache.commons.vfs2 that return FileSystemOptionsModifier and TypeMethodDescriptionFileSystem.getFileSystemOptions()Returns the FileSystemOptions used to instantiate this file system.Methods in org.apache.commons.vfs2 with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionintFileSystemOptions.compareTo(FileSystemOptions other) protected BooleanFileSystemConfigBuilder.getBoolean(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Boolean.protected booleanFileSystemConfigBuilder.getBoolean(FileSystemOptions fileSystemOptions, String name, boolean defaultValue) Gets a named option as a Boolean.protected BooleanFileSystemConfigBuilder.getBoolean(FileSystemOptions fileSystemOptions, String name, Boolean defaultValue) Gets a named option as a Boolean.protected ByteFileSystemConfigBuilder.getByte(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Byte.protected byteFileSystemConfigBuilder.getByte(FileSystemOptions fileSystemOptions, String name, byte defaultValue) Gets a named option as a Byte.protected ByteFileSystemConfigBuilder.getByte(FileSystemOptions fileSystemOptions, String name, Byte defaultValue) Gets a named option as a Byte.protected CharacterFileSystemConfigBuilder.getCharacter(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Character.protected charFileSystemConfigBuilder.getCharacter(FileSystemOptions fileSystemOptions, String name, char defaultValue) Gets a named option as a Character.protected CharacterFileSystemConfigBuilder.getCharacter(FileSystemOptions fileSystemOptions, String name, Character defaultValue) Gets a named option as a Character.protected DoubleFileSystemConfigBuilder.getDouble(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Double.protected doubleFileSystemConfigBuilder.getDouble(FileSystemOptions fileSystemOptions, String name, double defaultValue) Gets a named option as a Double.protected DoubleFileSystemConfigBuilder.getDouble(FileSystemOptions fileSystemOptions, String name, Double defaultValue) Gets a named option as a Double.protected DurationFileSystemConfigBuilder.getDuration(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Duration.protected DurationFileSystemConfigBuilder.getDuration(FileSystemOptions fileSystemOptions, String name, Duration defaultValue) Gets a named option as a Duration.protected IntegerFileSystemConfigBuilder.getDurationInteger(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Duration bound to the integer range.protected IntegerFileSystemConfigBuilder.getDurationInteger(FileSystemOptions fileSystemOptions, String name, Duration defaultValue) Gets a named option as a Duration bound to the integer range.protected <E extends Enum<E>>
EFileSystemConfigBuilder.getEnum(Class<E> enumClass, FileSystemOptions fileSystemOptions, String name) Gets a named option as a Double.protected <E extends Enum<E>>
EFileSystemConfigBuilder.getEnum(Class<E> enumClass, FileSystemOptions fileSystemOptions, String name, E defaultValue) Gets a named option as an Enum.protected FloatFileSystemConfigBuilder.getFloat(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Float.protected floatFileSystemConfigBuilder.getFloat(FileSystemOptions fileSystemOptions, String name, float defaultValue) Gets a named option as a Float.protected FloatFileSystemConfigBuilder.getFloat(FileSystemOptions fileSystemOptions, String name, Float defaultValue) Gets a named option as a Float.protected IntegerFileSystemConfigBuilder.getInteger(FileSystemOptions fileSystemOptions, String name) Gets a named option as an Integer.protected intFileSystemConfigBuilder.getInteger(FileSystemOptions fileSystemOptions, String name, int defaultValue) Gets a named option as an Integer.protected IntegerFileSystemConfigBuilder.getInteger(FileSystemOptions fileSystemOptions, String name, Integer defaultValue) Gets a named option as an Integer.protected LongFileSystemConfigBuilder.getLong(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Long.protected longFileSystemConfigBuilder.getLong(FileSystemOptions fileSystemOptions, String name, long defaultValue) Gets a named option as a Long.protected LongFileSystemConfigBuilder.getLong(FileSystemOptions fileSystemOptions, String name, Long defaultValue) Gets a named option as a Long.protected <T> TFileSystemConfigBuilder.getParam(FileSystemOptions fileSystemOptions, String name) Gets a named parameter.private <T> TFileSystemConfigBuilder.getParam(FileSystemOptions fileSystemOptions, String name, T defaultValue, Function<String, T> function) Gets a named parameter.FileSystemConfigBuilder.getRootURI(FileSystemOptions fileSystemOptions) Gets the root URI of the file system.protected ShortFileSystemConfigBuilder.getShort(FileSystemOptions fileSystemOptions, String name) Gets a named option as a Short.protected shortFileSystemConfigBuilder.getShort(FileSystemOptions fileSystemOptions, String name, short defaultValue) Gets a named option as a Short.protected ShortFileSystemConfigBuilder.getShort(FileSystemOptions fileSystemOptions, String name, Short defaultValue) Gets a named option as a Short.protected StringFileSystemConfigBuilder.getString(FileSystemOptions fileSystemOptions, String name) Gets a named option as a String.protected StringFileSystemConfigBuilder.getString(FileSystemOptions fileSystemOptions, String name, String defaultValue) Gets a named option as a String.protected booleanFileSystemConfigBuilder.hasObject(FileSystemOptions fileSystemOptions, String name) Checks the named setting specified.protected booleanFileSystemConfigBuilder.hasParam(FileSystemOptions fileSystemOptions, String name) Checks if option exists.FileSystemManager.resolveFile(String name, FileSystemOptions fileSystemOptions) Locates a file by name.protected voidFileSystemConfigBuilder.setParam(FileSystemOptions fileSystemOptions, String name, boolean value) Sets the named parameter.protected voidFileSystemConfigBuilder.setParam(FileSystemOptions fileSystemOptions, String name, Object value) Sets the named parameter.voidFileSystemConfigBuilder.setRootURI(FileSystemOptions fileSystemOptions, String rootURI) Sets the root URI of the file system. -
Uses of FileSystemOptions in org.apache.commons.vfs2.impl
Methods in org.apache.commons.vfs2.impl with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionDefaultFileSystemConfigBuilder.getUserAuthenticator(FileSystemOptions opts) DefaultFileSystemManager.resolveFile(String uri, FileSystemOptions fileSystemOptions) Locate a file by URI, use the FileSystemOptions for file-system creation.DefaultFileSystemManager.resolveFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Resolves a URI, relative to a base file with specified FileSystem configuration.DefaultVfsComponentContext.resolveFile(String name, FileSystemOptions fileSystemOptions) Locate a file by name.DefaultVfsComponentContext.resolveFile(FileObject baseFile, String name, FileSystemOptions fileSystemOptions) Locate a file by name.voidDefaultFileSystemConfigBuilder.setUserAuthenticator(FileSystemOptions opts, UserAuthenticator userAuthenticator) Sets the user authenticator to get authentication informations.Constructors in org.apache.commons.vfs2.impl with parameters of type FileSystemOptionsModifierConstructorDescriptionVirtualFileSystem(AbstractFileName rootName, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider
Fields in org.apache.commons.vfs2.provider declared as FileSystemOptionsModifier and TypeFieldDescriptionprivate static final FileSystemOptionsFileSystemKey.EMPTY_OPTIONSprivate final FileSystemOptionsAbstractFileSystem.fileSystemOptionsFileSystemOptions used for configurationprivate final FileSystemOptionsDefaultURLStreamHandler.fileSystemOptionsprivate final FileSystemOptionsFileSystemKey.fileSystemOptionsNever null as the ctor sets it to EMPTY_OPTIONS if input is null.Methods in org.apache.commons.vfs2.provider that return FileSystemOptionsModifier and TypeMethodDescriptionAbstractFileSystem.getFileSystemOptions()Returns the FileSystemOptions used to instantiate this file system.Methods in org.apache.commons.vfs2.provider with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionAbstractFileProvider.createFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.AbstractLayeredFileProvider.createFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.FileProvider.createFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.protected abstract FileSystemAbstractLayeredFileProvider.doCreateFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.protected abstract FileSystemAbstractOriginatingFileProvider.doCreateFileSystem(FileName rootFileName, FileSystemOptions fileSystemOptions) Creates aFileSystem.AbstractLayeredFileProvider.findFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.protected FileObjectAbstractOriginatingFileProvider.findFile(FileName fileName, FileSystemOptions fileSystemOptions) Locates a file from its parsed URI.AbstractOriginatingFileProvider.findFile(FileObject baseFileObject, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.CompositeFileProvider.findFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.FileProvider.findFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.protected FileSystemAbstractFileProvider.findFileSystem(Comparable<?> key, FileSystemOptions fileSystemOptions) Locates a cached file system.protected FileSystemAbstractOriginatingFileProvider.getFileSystem(FileName rootFileName, FileSystemOptions fileSystemOptions) Returns the FileSystem associated with the specified root.VfsComponentContext.resolveFile(String name, FileSystemOptions fileSystemOptions) Resolves a file by name.VfsComponentContext.resolveFile(FileObject baseFile, String name, FileSystemOptions fileSystemOptions) Resolves a file by name.Constructors in org.apache.commons.vfs2.provider with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedAbstractFileSystem(FileName rootFileName, FileObject parentLayer, FileSystemOptions fileSystemOptions) DefaultURLStreamHandler(VfsComponentContext context, FileSystemOptions fileSystemOptions) (package private)FileSystemKey(Comparable<?> key, FileSystemOptions fileSystemOptions) Creates the FS key. -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.bzip2
Methods in org.apache.commons.vfs2.provider.bzip2 with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemBzip2FileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions) Constructors in org.apache.commons.vfs2.provider.bzip2 with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedBzip2FileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.compressed
Methods in org.apache.commons.vfs2.provider.compressed with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected abstract FileSystemCompressedFileFileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions) protected FileSystemCompressedFileFileProvider.doCreateFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.Constructors in org.apache.commons.vfs2.provider.compressed with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedCompressedFileFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.ftp
Fields in org.apache.commons.vfs2.provider.ftp declared as FileSystemOptionsModifier and TypeFieldDescriptionprotected final FileSystemOptionsFTPClientWrapper.fileSystemOptionsMethods in org.apache.commons.vfs2.provider.ftp that return FileSystemOptionsMethods in org.apache.commons.vfs2.provider.ftp with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprivate voidFtpClientFactory.ConnectionFactory.configureClient(FileSystemOptions fileSystemOptions, C client) protected abstract CFtpClientFactory.ConnectionFactory.createClient(FileSystemOptions fileSystemOptions) protected org.apache.commons.net.ftp.FTPClientFtpClientFactory.FtpConnectionFactory.createClient(FileSystemOptions fileSystemOptions) FtpClientFactory.ConnectionFactory.createConnection(String hostname, int port, char[] username, char[] password, String workingDirectory, FileSystemOptions fileSystemOptions) static org.apache.commons.net.ftp.FTPClientFtpClientFactory.createConnection(String hostname, int port, char[] username, char[] password, String workingDirectory, FileSystemOptions fileSystemOptions) Creates a new connection to the server.protected FileSystemFtpFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) Creates the file system.FtpFileSystemConfigBuilder.getAutodetectUtf8(FileSystemOptions options) Gets whether to try to autodetect the server encoding (only UTF8 is supported).FtpFileSystemConfigBuilder.getConnectTimeout(FileSystemOptions options) Deprecated.FtpFileSystemConfigBuilder.getConnectTimeoutDuration(FileSystemOptions options) Gets the timeout in milliseconds to use for the socket connection.FtpFileSystemConfigBuilder.getControlEncoding(FileSystemOptions options) FtpFileSystemConfigBuilder.getControlKeepAliveReplyTimeout(FileSystemOptions options) FtpFileSystemConfigBuilder.getControlKeepAliveTimeout(FileSystemOptions options) FtpFileSystemConfigBuilder.getDataTimeout(FileSystemOptions options) Deprecated.FtpFileSystemConfigBuilder.getDataTimeoutDuration(FileSystemOptions options) Gets the timeout for opening the data channel.FtpFileSystemConfigBuilder.getDefaultDateFormat(FileSystemOptions options) Get the default date format used by the server.FtpFileSystemConfigBuilder.getEntryParser(FileSystemOptions options) org.apache.commons.net.ftp.parser.FTPFileEntryParserFactoryFtpFileSystemConfigBuilder.getEntryParserFactory(FileSystemOptions options) FtpFileSystemConfigBuilder.getFileType(FileSystemOptions options) Gets the file type parameter.FtpFileSystemConfigBuilder.getMdtmLastModifiedTime(FileSystemOptions options) Gets the option to use FTP MDTM forFileContent.getLastModifiedTime().FtpFileSystemConfigBuilder.getPassiveMode(FileSystemOptions options) FtpFileSystemConfigBuilder.getProxy(FileSystemOptions options) Gets the Proxy.FtpFileSystemConfigBuilder.getRecentDateFormat(FileSystemOptions options) SeeFTPClientConfigfor details and examples.FtpFileSystemConfigBuilder.getRemoteVerification(FileSystemOptions options) Gets whether to use remote verification.FtpFileSystemConfigBuilder.getServerLanguageCode(FileSystemOptions options) Get the language code used by the server.FtpFileSystemConfigBuilder.getServerTimeZoneId(FileSystemOptions options) SeeFTPClientConfigfor details and examples.String[]FtpFileSystemConfigBuilder.getShortMonthNames(FileSystemOptions options) SeeFTPClientConfigfor details and examples.FtpFileSystemConfigBuilder.getSoTimeout(FileSystemOptions options) Deprecated.FtpFileSystemConfigBuilder.getSoTimeoutDuration(FileSystemOptions options) Gets The so timeout duration.FtpFileSystemConfigBuilder.getTransferAbortedOkReplyCodes(FileSystemOptions options) FtpFileSystemConfigBuilder.getUserDirIsRoot(FileSystemOptions options) ReturnsBoolean.TRUEif VFS should treat the user directory as the root directory.voidFtpFileSystemConfigBuilder.setAutodetectUtf8(FileSystemOptions options, Boolean autodetectUTF8) Sets whether to try to autodetect the server encoding (only UTF8 is supported).voidFtpFileSystemConfigBuilder.setConnectTimeout(FileSystemOptions options, Integer duration) voidFtpFileSystemConfigBuilder.setConnectTimeout(FileSystemOptions options, Duration duration) Sets the timeout for the initial control connection.voidFtpFileSystemConfigBuilder.setControlEncoding(FileSystemOptions options, String encoding) SeeFTP.setControlEncoding(java.lang.String)for details and examples.voidFtpFileSystemConfigBuilder.setControlKeepAliveReplyTimeout(FileSystemOptions options, Duration duration) Sets the control keep alive reply timeout for the FTP client.voidFtpFileSystemConfigBuilder.setControlKeepAliveTimeout(FileSystemOptions options, Duration duration) Sets the control keep alive timeout for the FTP client.voidFtpFileSystemConfigBuilder.setDataTimeout(FileSystemOptions options, Integer duration) voidFtpFileSystemConfigBuilder.setDataTimeout(FileSystemOptions options, Duration duration) Set the data timeout for the FTP client.voidFtpFileSystemConfigBuilder.setDefaultDateFormat(FileSystemOptions options, String defaultDateFormat) Set the default date format used by the server.voidFtpFileSystemConfigBuilder.setEntryParser(FileSystemOptions options, String key) Set the FQCN of your FileEntryParser used to parse the directory listing from your server.voidFtpFileSystemConfigBuilder.setEntryParserFactory(FileSystemOptions options, org.apache.commons.net.ftp.parser.FTPFileEntryParserFactory factory) FTPFileEntryParserFactory which will be used for ftp-entry parsing.voidFtpFileSystemConfigBuilder.setFileType(FileSystemOptions options, FtpFileType ftpFileType) Sets the file type parameter.voidFtpFileSystemConfigBuilder.setMdtmLastModifiedTime(FileSystemOptions options, boolean mdtm) Sets the option to use FTP MDTM forFileContent.getLastModifiedTime().voidFtpFileSystemConfigBuilder.setPassiveMode(FileSystemOptions options, boolean passiveMode) Enter into passive mode.voidFtpFileSystemConfigBuilder.setProxy(FileSystemOptions options, Proxy proxy) Sets the Proxy.voidFtpFileSystemConfigBuilder.setRecentDateFormat(FileSystemOptions options, String recentDateFormat) SeeFTPClientConfigfor details and examples.voidFtpFileSystemConfigBuilder.setRemoteVerification(FileSystemOptions options, boolean remoteVerification) Sets whether to use remote verification.voidFtpFileSystemConfigBuilder.setServerLanguageCode(FileSystemOptions options, String serverLanguageCode) Set the language code used by the server.voidFtpFileSystemConfigBuilder.setServerTimeZoneId(FileSystemOptions options, String serverTimeZoneId) SeeFTPClientConfigfor details and examples.voidFtpFileSystemConfigBuilder.setShortMonthNames(FileSystemOptions options, String[] shortMonthNames) SeeFTPClientConfigfor details and examples.voidFtpFileSystemConfigBuilder.setSoTimeout(FileSystemOptions options, Integer timeout) Deprecated.voidFtpFileSystemConfigBuilder.setSoTimeout(FileSystemOptions options, Duration timeout) Sets the socket timeout for the FTP client.voidFtpFileSystemConfigBuilder.setTransferAbortedOkReplyCodes(FileSystemOptions options, List<Integer> replyCodes) Sets the list of reply codes that are considered as OK when prematurely closing a stream.protected abstract voidFtpClientFactory.ConnectionFactory.setupOpenConnection(C client, FileSystemOptions fileSystemOptions) protected voidFtpClientFactory.FtpConnectionFactory.setupOpenConnection(org.apache.commons.net.ftp.FTPClient client, FileSystemOptions fileSystemOptions) voidFtpFileSystemConfigBuilder.setUserDirIsRoot(FileSystemOptions options, boolean userDirIsRoot) Use user directory as root (do not change to fs root).Constructors in org.apache.commons.vfs2.provider.ftp with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedFTPClientWrapper(GenericFileName root, FileSystemOptions fileSystemOptions) FtpFileSystem(GenericFileName rootName, FtpClient ftpClient, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.gzip
Methods in org.apache.commons.vfs2.provider.gzip with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemGzipFileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions) Constructors in org.apache.commons.vfs2.provider.gzip with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedGzipFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.http4
Methods in org.apache.commons.vfs2.provider.http4 with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprivate org.apache.http.conn.HttpClientConnectionManagerHttp4FileProvider.createConnectionManager(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions, SSLContext sslContext, HostnameVerifier verifier) private org.apache.http.client.CookieStoreHttp4FileProvider.createDefaultCookieStore(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) private org.apache.http.client.config.RequestConfigHttp4FileProvider.createDefaultRequestConfig(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) private HostnameVerifierHttp4FileProvider.createHostnameVerifier(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) protected org.apache.http.client.HttpClientHttp4FileProvider.createHttpClient(Http4FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) Create anHttpClientobject for an http4 file system.protected org.apache.http.impl.client.HttpClientBuilderHttp4FileProvider.createHttpClientBuilder(Http4FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions) Create anHttpClientBuilderobject.protected org.apache.http.client.protocol.HttpClientContextHttp4FileProvider.createHttpClientContext(Http4FileSystemConfigBuilder builder, GenericFileName rootName, FileSystemOptions fileSystemOptions, UserAuthenticationData authData) Create anHttpClientContextobject for an http4 file system.private org.apache.http.conn.routing.HttpRoutePlannerHttp4FileProvider.createHttpRoutePlanner(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) protected SSLContextHttp4FileProvider.createSSLContext(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) CreateSSLContextfor HttpClient.protected FileSystemHttp4FileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) intHttp4FileSystemConfigBuilder.getConnectionTimeout(FileSystemOptions opts) Http4FileSystemConfigBuilder.getConnectionTimeoutDuration(FileSystemOptions opts) /** Gets the connection timeout.org.apache.http.cookie.Cookie[]Http4FileSystemConfigBuilder.getCookies(FileSystemOptions opts) Gets the cookies to add to the request.booleanHttp4FileSystemConfigBuilder.getFollowRedirect(FileSystemOptions opts) Gets whether to follow redirects for the connection.Http4FileSystemConfigBuilder.getKeyStoreFile(FileSystemOptions opts) Return keystore file path to be used in SSL connections.(package private) StringHttp4FileSystemConfigBuilder.getKeyStorePass(FileSystemOptions opts) Return keystore pass phrase for SSL connections.Http4FileSystemConfigBuilder.getKeyStoreType(FileSystemOptions opts) Get keystore type for SSL connections.intHttp4FileSystemConfigBuilder.getMaxConnectionsPerHost(FileSystemOptions opts) Gets the maximum number of connections allowed per host.intHttp4FileSystemConfigBuilder.getMaxTotalConnections(FileSystemOptions opts) Gets the maximum number of connections allowed.Http4FileSystemConfigBuilder.getProxyAuthenticator(FileSystemOptions opts) Gets the proxy authenticator where the system should get the credentials from.Http4FileSystemConfigBuilder.getProxyHost(FileSystemOptions opts) Gets the proxy to use for http connection.private org.apache.http.HttpHostHttp4FileProvider.getProxyHttpHost(Http4FileSystemConfigBuilder builder, FileSystemOptions fileSystemOptions) intHttp4FileSystemConfigBuilder.getProxyPort(FileSystemOptions opts) Gets the proxy-port to use for http the connection.Http4FileSystemConfigBuilder.getProxyScheme(FileSystemOptions opts) Gets the proxy-scheme to use for http the connection.intHttp4FileSystemConfigBuilder.getSoTimeout(FileSystemOptions opts) Deprecated.Http4FileSystemConfigBuilder.getSoTimeoutDuration(FileSystemOptions opts) Gets the socket timeout.Http4FileSystemConfigBuilder.getUrlCharset(FileSystemOptions opts) Sets the charset used for url encoding.Http4FileSystemConfigBuilder.getUserAgent(FileSystemOptions opts) Gets the user agent stringbooleanHttp4FileSystemConfigBuilder.isHostnameVerificationEnabled(FileSystemOptions opts) Determines if the hostname should be verified in SSL context.booleanHttp4FileSystemConfigBuilder.isKeepAlive(FileSystemOptions opts) Determines if the FileSystemOptions indicate that HTTP Keep-Alive is respected.booleanHttp4FileSystemConfigBuilder.isPreemptiveAuth(FileSystemOptions opts) Determines if the FileSystemOptions indicate that preemptive authentication is requested.voidHttp4FileSystemConfigBuilder.setConnectionTimeout(FileSystemOptions opts, int connectionTimeout) voidHttp4FileSystemConfigBuilder.setConnectionTimeout(FileSystemOptions opts, Duration connectionTimeout) Sets the connection timeout.voidHttp4FileSystemConfigBuilder.setCookies(FileSystemOptions opts, org.apache.http.cookie.Cookie[] cookies) The cookies to add to the request.voidHttp4FileSystemConfigBuilder.setFollowRedirect(FileSystemOptions opts, boolean redirect) Sets whether to follow redirects for the connection.voidHttp4FileSystemConfigBuilder.setHostnameVerificationEnabled(FileSystemOptions opts, boolean hostnameVerificationEnabled) Sets if the hostname should be verified in SSL context.voidHttp4FileSystemConfigBuilder.setKeepAlive(FileSystemOptions opts, boolean keepAlive) Sets if the FileSystemOptions indicate that HTTP Keep-Alive is respected.voidHttp4FileSystemConfigBuilder.setKeyStoreFile(FileSystemOptions opts, String keyStoreFile) Set keystore file path for SSL connections.voidHttp4FileSystemConfigBuilder.setKeyStorePass(FileSystemOptions opts, String keyStorePass) Set keystore pass phrase for SSL connecdtions.voidHttp4FileSystemConfigBuilder.setKeyStoreType(FileSystemOptions opts, String keyStoreType) Set keystore type for SSL connections.voidHttp4FileSystemConfigBuilder.setMaxConnectionsPerHost(FileSystemOptions opts, int maxHostConnections) Sets the maximum number of connections allowed to any host.voidHttp4FileSystemConfigBuilder.setMaxTotalConnections(FileSystemOptions opts, int maxTotalConnections) Sets the maximum number of connections allowed.voidHttp4FileSystemConfigBuilder.setPreemptiveAuth(FileSystemOptions opts, boolean preemptiveAuth) Sets the given value for preemptive HTTP authentication (using BASIC) on the given FileSystemOptions object.voidHttp4FileSystemConfigBuilder.setProxyAuthenticator(FileSystemOptions opts, UserAuthenticator authenticator) Sets the proxy authenticator where the system should get the credentials from.voidHttp4FileSystemConfigBuilder.setProxyHost(FileSystemOptions opts, String proxyHost) Sets the proxy to use for http connection.voidHttp4FileSystemConfigBuilder.setProxyPort(FileSystemOptions opts, int proxyPort) Sets the proxy-port to use for http connection.voidHttp4FileSystemConfigBuilder.setProxyScheme(FileSystemOptions opts, String proxyScheme) Sets the proxy-scheme to use for http connection.voidHttp4FileSystemConfigBuilder.setSoTimeout(FileSystemOptions opts, int soTimeout) voidHttp4FileSystemConfigBuilder.setSoTimeout(FileSystemOptions opts, Duration soTimeout) Sets the socket timeout.voidHttp4FileSystemConfigBuilder.setUrlCharset(FileSystemOptions opts, String charset) Sets the charset used for URL encoding.voidHttp4FileSystemConfigBuilder.setUserAgent(FileSystemOptions opts, String userAgent) Sets the user agent to attach to the outgoing http methodsConstructors in org.apache.commons.vfs2.provider.http4 with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedHttp4FileSystem(FileName rootName, FileSystemOptions fileSystemOptions, org.apache.http.client.HttpClient httpClient, org.apache.http.client.protocol.HttpClientContext httpClientContext) ConstructHttp4FileSystem. -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.jar
Methods in org.apache.commons.vfs2.provider.jar with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemJarFileProvider.doCreateFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.Constructors in org.apache.commons.vfs2.provider.jar with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedJarFileSystem(AbstractFileName rootName, FileObject file, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.local
Methods in org.apache.commons.vfs2.provider.local with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemDefaultLocalFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) Creates the file system.Constructors in org.apache.commons.vfs2.provider.local with parameters of type FileSystemOptionsModifierConstructorDescriptionLocalFileSystem(FileName rootName, String rootFile, FileSystemOptions opts) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.ram
Methods in org.apache.commons.vfs2.provider.ram with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemRamFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) longRamFileSystemConfigBuilder.getLongMaxSize(FileSystemOptions opts) Defaults toInteger.MAX_VALUE.intRamFileSystemConfigBuilder.getMaxSize(FileSystemOptions opts) Defaults toInteger.MAX_VALUE.voidRamFileSystemConfigBuilder.setMaxSize(FileSystemOptions opts, int sizeInBytes) Deprecated.voidRamFileSystemConfigBuilder.setMaxSize(FileSystemOptions opts, long sizeInBytes) Sets the maximum size of the file system.Constructors in org.apache.commons.vfs2.provider.ram with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedRamFileSystem(FileName rootName, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.res
Methods in org.apache.commons.vfs2.provider.res with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionResourceFileProvider.findFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.ResourceFileSystemConfigBuilder.getClassLoader(FileSystemOptions opts) voidResourceFileSystemConfigBuilder.setClassLoader(FileSystemOptions opts, ClassLoader classLoader) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.sftp
Fields in org.apache.commons.vfs2.provider.sftp declared as FileSystemOptionsModifier and TypeFieldDescriptionprivate final FileSystemOptionsSftpStreamProxy.proxyOptionsThe options for connection.Methods in org.apache.commons.vfs2.provider.sftp that return FileSystemOptionsModifier and TypeMethodDescriptionSftpFileSystemConfigBuilder.getProxyOptions(FileSystemOptions options) Gets the proxy options that are used to connect to the proxy host.Methods in org.apache.commons.vfs2.provider.sftp with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionstatic com.jcraft.jsch.SessionSftpClientFactory.createConnection(String hostname, int port, char[] username, char[] password, FileSystemOptions fileSystemOptions) Creates a new connection to the server.(package private) static com.jcraft.jsch.SessionSftpFileProvider.createSession(GenericFileName rootName, FileSystemOptions fileSystemOptions) Creates a new Session.private static com.jcraft.jsch.ProxySftpClientFactory.createStreamProxy(String proxyHost, int proxyPort, FileSystemOptions fileSystemOptions, SftpFileSystemConfigBuilder builder) protected FileSystemSftpFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions) Creates aFileSystem.SftpFileSystemConfigBuilder.getCompression(FileSystemOptions options) com.jcraft.jsch.ConfigRepositorySftpFileSystemConfigBuilder.getConfigRepository(FileSystemOptions options) Gets the config repository.SftpFileSystemConfigBuilder.getConnectTimeout(FileSystemOptions options) Gets the connect timeout duration.SftpFileSystemConfigBuilder.getConnectTimeoutMillis(FileSystemOptions options) Deprecated.SftpFileSystemConfigBuilder.getFileNameEncoding(FileSystemOptions options) Gets the file name encoding.File[]SftpFileSystemConfigBuilder.getIdentities(FileSystemOptions options) Deprecated.SftpFileSystemConfigBuilder.getIdentityInfo(FileSystemOptions options) Gets the identity infos.SftpFileSystemConfigBuilder.getIdentityProvider(FileSystemOptions options) Gets the identity providers.SftpFileSystemConfigBuilder.getIdentityRepositoryFactory(FileSystemOptions options) Get the identity repository factory.SftpFileSystemConfigBuilder.getKeyExchangeAlgorithm(FileSystemOptions options) SftpFileSystemConfigBuilder.getKnownHosts(FileSystemOptions options) SftpFileSystemConfigBuilder.getPreferredAuthentications(FileSystemOptions options) Gets authentication order.SftpFileSystemConfigBuilder.getProxyCommand(FileSystemOptions options) Gets the command that will be run on the proxy host when using a SftpStreamProxy.SftpFileSystemConfigBuilder.getProxyHost(FileSystemOptions options) Gets the proxy to use for the SFTP connection.SftpFileSystemConfigBuilder.getProxyOptions(FileSystemOptions options) Gets the proxy options that are used to connect to the proxy host.SftpFileSystemConfigBuilder.getProxyPassword(FileSystemOptions options) Gets the proxy password that are used to connect to the proxy host.intSftpFileSystemConfigBuilder.getProxyPort(FileSystemOptions options) Gets the proxy-port to use for the SFTP the connection.SftpFileSystemConfigBuilder.getProxyType(FileSystemOptions options) Gets the proxy type to use for the SFTP connection.SftpFileSystemConfigBuilder.getProxyUser(FileSystemOptions options) Gets the user name for the proxy used for the SFTP connection.SftpFileSystemConfigBuilder.getSessionTimeout(FileSystemOptions options) SftpFileSystemConfigBuilder.getSessionTimeoutMillis(FileSystemOptions options) Deprecated.SftpFileSystemConfigBuilder.getStrictHostKeyChecking(FileSystemOptions options) SftpFileSystemConfigBuilder.getTimeout(FileSystemOptions options) SftpFileSystemConfigBuilder.getUserDirIsRoot(FileSystemOptions options) ReturnsBoolean.TRUEif VFS should treat the user directory as the root directory.com.jcraft.jsch.UserInfoSftpFileSystemConfigBuilder.getUserInfo(FileSystemOptions options) booleanSftpFileSystemConfigBuilder.isDisableDetectExecChannel(FileSystemOptions options) Returnstrueif the detection of the exec channel should be disabled.booleanSftpFileSystemConfigBuilder.isLoadOpenSSHConfig(FileSystemOptions options) ReturnsBoolean.TRUEif VFS should load the OpenSSH config.voidSftpFileSystemConfigBuilder.setCompression(FileSystemOptions options, String compression) Configures the compression algorithms to use.voidSftpFileSystemConfigBuilder.setConfigRepository(FileSystemOptions options, com.jcraft.jsch.ConfigRepository configRepository) Sets the config repository.voidSftpFileSystemConfigBuilder.setConnectTimeout(FileSystemOptions options, Duration timeout) Sets the timeout value to create a Jsch connection.voidSftpFileSystemConfigBuilder.setConnectTimeoutMillis(FileSystemOptions options, Integer timeout) voidSftpFileSystemConfigBuilder.setDisableDetectExecChannel(FileSystemOptions options, boolean disableDetectExecChannel) Sets whether detection of exec channel is disabled.voidSftpFileSystemConfigBuilder.setFileNameEncoding(FileSystemOptions options, String fileNameEncoding) Sets the file name encoding.voidSftpFileSystemConfigBuilder.setIdentities(FileSystemOptions options, File... identityFiles) Deprecated.voidSftpFileSystemConfigBuilder.setIdentityInfo(FileSystemOptions options, IdentityInfo... identites) voidSftpFileSystemConfigBuilder.setIdentityProvider(FileSystemOptions options, IdentityProvider... identites) Sets the identity info (your private key files).voidSftpFileSystemConfigBuilder.setIdentityRepositoryFactory(FileSystemOptions options, IdentityRepositoryFactory factory) Sets the identity repository.voidSftpFileSystemConfigBuilder.setKeyExchangeAlgorithm(FileSystemOptions options, String keyExchangeAlgoritm) Configures Key exchange algorithm explicitly e.g diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha256, diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1voidSftpFileSystemConfigBuilder.setKnownHosts(FileSystemOptions options, File knownHosts) Sets the known_hosts file.voidSftpFileSystemConfigBuilder.setLoadOpenSSHConfig(FileSystemOptions options, boolean loadOpenSSHConfig) Sets the whether to load OpenSSH config.voidSftpFileSystemConfigBuilder.setPreferredAuthentications(FileSystemOptions options, String preferredAuthentications) Configures authentication order.voidSftpFileSystemConfigBuilder.setProxyCommand(FileSystemOptions options, String proxyCommand) Sets the proxy username to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyHost(FileSystemOptions options, String proxyHost) Sets the proxy to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyOptions(FileSystemOptions options, FileSystemOptions proxyOptions) Sets the proxy username to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyPassword(FileSystemOptions options, String proxyPassword) Sets the proxy password to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyPort(FileSystemOptions options, int proxyPort) Sets the proxy port to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyType(FileSystemOptions options, SftpFileSystemConfigBuilder.ProxyType proxyType) Sets the proxy type to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setProxyUser(FileSystemOptions options, String proxyUser) Sets the proxy username to use for the SFTP connection.voidSftpFileSystemConfigBuilder.setSessionTimeout(FileSystemOptions options, Duration timeout) Sets the timeout value on Jsch session.voidSftpFileSystemConfigBuilder.setSessionTimeoutMillis(FileSystemOptions options, Integer timeout) voidSftpFileSystemConfigBuilder.setStrictHostKeyChecking(FileSystemOptions options, String hostKeyChecking) Configures the host key checking to use.voidSftpFileSystemConfigBuilder.setTimeout(FileSystemOptions options, Integer timeout) voidSftpFileSystemConfigBuilder.setUserDirIsRoot(FileSystemOptions options, boolean userDirIsRoot) Sets the whether to use the user directory as root (do not change to file system root).voidSftpFileSystemConfigBuilder.setUserInfo(FileSystemOptions options, com.jcraft.jsch.UserInfo info) Sets the Jsch UserInfo class to use.Constructors in org.apache.commons.vfs2.provider.sftp with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedSftpFileSystem(GenericFileName rootName, com.jcraft.jsch.Session session, FileSystemOptions fileSystemOptions) SftpStreamProxy(String commandFormat, String proxyUser, String proxyHost, int proxyPort, String proxyPassword, FileSystemOptions proxyOptions) Creates a stream proxy. -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.tar
Methods in org.apache.commons.vfs2.provider.tar with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemTarFileProvider.doCreateFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.Constructors in org.apache.commons.vfs2.provider.tar with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedTarFileSystem(AbstractFileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.temp
Methods in org.apache.commons.vfs2.provider.temp with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionTemporaryFileProvider.findFile(FileObject baseFile, String uri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI. -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.url
Methods in org.apache.commons.vfs2.provider.url with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionUrlFileProvider.findFile(FileObject baseFile, String fileUri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.Constructors in org.apache.commons.vfs2.provider.url with parameters of type FileSystemOptionsModifierConstructorDescriptionprotectedUrlFileSystem(FileName rootName, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.provider.zip
Methods in org.apache.commons.vfs2.provider.zip with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionprotected FileSystemZipFileProvider.doCreateFileSystem(String scheme, FileObject file, FileSystemOptions fileSystemOptions) Creates a layered file system.ZipFileSystemConfigBuilder.getCharset(FileSystemOptions opts) voidZipFileSystemConfigBuilder.setCharset(FileSystemOptions opts, Charset charset) Constructors in org.apache.commons.vfs2.provider.zip with parameters of type FileSystemOptionsModifierConstructorDescriptionZipFileSystem(AbstractFileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of FileSystemOptions in org.apache.commons.vfs2.util
Fields in org.apache.commons.vfs2.util declared as FileSystemOptionsModifier and TypeFieldDescriptionprivate final FileSystemOptionsDelegatingFileSystemOptionsBuilder.Context.fsoMethods in org.apache.commons.vfs2.util with parameters of type FileSystemOptionsModifier and TypeMethodDescriptionstatic UserAuthenticationDataUserAuthenticatorUtils.authenticate(FileSystemOptions options, UserAuthenticationData.Type[] authenticatorTypes) Authenticates if there is an authenticator, else returns null.voidDelegatingFileSystemOptionsBuilder.setConfigClass(FileSystemOptions fso, String scheme, String name, Class<?> className) Sets a single class value.voidDelegatingFileSystemOptionsBuilder.setConfigClasses(FileSystemOptions fso, String scheme, String name, Class<?>[] classNames) Sets an array of class values.voidDelegatingFileSystemOptionsBuilder.setConfigString(FileSystemOptions fso, String scheme, String name, String value) Sets a single string value.voidDelegatingFileSystemOptionsBuilder.setConfigStrings(FileSystemOptions fso, String scheme, String name, String[] values) Sets an array of string value.Constructors in org.apache.commons.vfs2.util with parameters of type FileSystemOptionsModifierConstructorDescriptionprivateContext(FileSystemOptions fso, String scheme, String name, Object[] values)
FtpFileSystemConfigBuilder.getConnectTimeoutDuration(FileSystemOptions).