Uses of Class
org.apache.commons.configuration2.io.URLConnectionOptions
-
Packages that use URLConnectionOptions Package Description org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.io A package with classes related to I/O operations. -
-
Uses of URLConnectionOptions in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder with parameters of type URLConnectionOptions Modifier and Type Method Description FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setURL(java.net.URL url, URLConnectionOptions urlConnectionOptions)
default T
FileBasedBuilderProperties. setURL(java.net.URL url, URLConnectionOptions urlConnectionOptions)
Sets the location of the associatedFileHandler
as aURL
object. -
Uses of URLConnectionOptions in org.apache.commons.configuration2.io
Fields in org.apache.commons.configuration2.io declared as URLConnectionOptions Modifier and Type Field Description static URLConnectionOptions
URLConnectionOptions. DEFAULT
Default options.private URLConnectionOptions
FileLocator.FileLocatorBuilder. urlConnectionOptions
The URL connection options.private URLConnectionOptions
FileLocator. urlConnectionOptions
The source URL connection options.Methods in org.apache.commons.configuration2.io that return URLConnectionOptions Modifier and Type Method Description URLConnectionOptions
FileLocator. getURLConnectionOptions()
Gets the URLConnectionOptionsURLConnectionOptions
URLConnectionOptions. setAllowUserInteraction(boolean allowUserInteraction)
URLConnectionOptions
URLConnectionOptions. setConnectTimeoutMillis(int connectTimeoutMillis)
URLConnectionOptions
URLConnectionOptions. setReadTimeoutMillis(int readTimeoutMillis)
URLConnectionOptions
URLConnectionOptions. setUseCaches(boolean useCaches)
Methods in org.apache.commons.configuration2.io with parameters of type URLConnectionOptions Modifier and Type Method Description java.io.InputStream
DefaultFileSystem. getInputStream(java.net.URL url, URLConnectionOptions urlConnectionOptions)
java.io.InputStream
FileSystem. getInputStream(java.net.URL url, URLConnectionOptions urlConnectionOptions)
Not abstract for binary compatibility.void
FileHandler. setURL(java.net.URL url, URLConnectionOptions urlConnectionOptions)
Sets the location of the associated file as a URL.FileLocator.FileLocatorBuilder
FileLocator.FileLocatorBuilder. urlConnectionOptions(URLConnectionOptions urlConnectionOptions)
Specifies the source URL connection options of the newFileLocator
.Constructors in org.apache.commons.configuration2.io with parameters of type URLConnectionOptions Constructor Description URLConnectionOptions(URLConnectionOptions urlConnectionOptions)
Constructs an instance with values from the given URLConnectionOptions.
-