Package | Description |
---|---|
com.teamdev.jxbrowser.engine |
This package provides the classes that allow you to work with engines.
|
com.teamdev.jxbrowser.net |
Contains classes and interfaces for working with network.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<Scheme,InterceptUrlRequestCallback> |
EngineOptions.schemes()
Returns an immutable map of the schemes that will be intercepted.
|
Modifier and Type | Method and Description |
---|---|
EngineOptions.Builder |
EngineOptions.Builder.addScheme(Scheme scheme,
InterceptUrlRequestCallback callback)
Associates the given URL
scheme with the callback , so that all URL
requests with the given scheme will be intercepted before they are sent out. |
Modifier and Type | Field and Description |
---|---|
static Scheme |
Scheme.HTTP |
static Scheme |
Scheme.HTTPS |
static Scheme |
Scheme.JAR
The scheme can be used to access resources located inside a JAR file.
|
Modifier and Type | Method and Description |
---|---|
static Scheme |
Scheme.of(java.lang.String name)
Returns the
Scheme instance for the given name. |