Package | Description |
---|---|
com.teamdev.jxbrowser.cookie |
Contains classes that allow you to manage cookies.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
Modifier and Type | Method and Description |
---|---|
Cookie |
Cookie.Builder.build()
Returns a new
Cookie built from the current state of this builder. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Cookie> |
CookieStore.cookies()
Returns an immutable list of all the cookies available in the cookie store.
|
java.util.List<Cookie> |
CookieStore.cookies(java.lang.String url)
Returns an immutable list of cookies for the given
url . |
Modifier and Type | Method and Description |
---|---|
void |
CookieStore.delete(Cookie cookie)
Deletes the given
cookie from the cookie store. |
void |
CookieStore.set(Cookie cookie)
Sets the
cookie . |
Modifier and Type | Method and Description |
---|---|
default Cookie |
CanSetCookieCallback.Params.cookie()
Returns the cookie received from a web server.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Cookie> |
CanGetCookiesCallback.Params.cookies()
Returns an immutable list of cookies that are going to be sent with the URL request.
|