Package | Description |
---|---|
org.simpleframework.http | |
org.simpleframework.http.message | |
org.simpleframework.http.parse |
Modifier and Type | Method and Description |
---|---|
Cookie |
ResponseHeader.getCookie(String name)
This returns the
Cookie object stored under the
specified name. |
Cookie |
RequestHeader.getCookie(String name)
This is used to acquire a cookie using the name of that cookie.
|
Cookie |
ResponseWrapper.getCookie(String name)
This returns the
Cookie object stored under the
specified name. |
Cookie |
RequestWrapper.getCookie(String name)
This is used to acquire a cookie usiing the name of that cookie.
|
Cookie |
ResponseHeader.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
ResponseWrapper.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
ResponseHeader.setCookie(String name,
String value)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
ResponseWrapper.setCookie(String name,
String value)
The
setCookie method is used to set a cookie value
with the cookie name. |
Modifier and Type | Method and Description |
---|---|
List<Cookie> |
ResponseHeader.getCookies()
This returns all
Cookie objects stored under the
specified name. |
List<Cookie> |
RequestHeader.getCookies()
This is used to acquire all cookies that were sent in the header.
|
List<Cookie> |
ResponseWrapper.getCookies()
This returns all
Cookie objects stored under the
specified name. |
List<Cookie> |
RequestWrapper.getCookies()
This is used to acquire all cookies that were sent in the header.
|
Modifier and Type | Method and Description |
---|---|
Cookie |
ResponseHeader.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
ResponseWrapper.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Modifier and Type | Method and Description |
---|---|
Cookie |
HeaderConsumer.getCookie(String name)
This is used to acquire a cookie using the name of that cookie.
|
Cookie |
Header.getCookie(String name)
This is used to acquire a cookie usiing the name of that cookie.
|
Cookie |
Message.getCookie(String name)
This returns the
Cookie object stored under the
specified name. |
Cookie |
MessageHeader.getCookie(String name)
This returns the
Cookie object stored under the
specified name. |
Cookie |
Message.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
MessageHeader.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
Message.setCookie(String name,
String value)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
MessageHeader.setCookie(String name,
String value)
The
setCookie method is used to set a cookie value
with the cookie name. |
Modifier and Type | Method and Description |
---|---|
List<Cookie> |
HeaderConsumer.getCookies()
This is used to acquire all cookies that were sent in the header.
|
List<Cookie> |
Header.getCookies()
This is used to acquire all cookies that were sent in the header.
|
List<Cookie> |
Message.getCookies()
This returns all
Cookie objects stored under the
specified name. |
List<Cookie> |
MessageHeader.getCookies()
This returns all
Cookie objects stored under the
specified name. |
Modifier and Type | Method and Description |
---|---|
Cookie |
Message.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Cookie |
MessageHeader.setCookie(Cookie cookie)
The
setCookie method is used to set a cookie value
with the cookie name. |
Modifier and Type | Method and Description |
---|---|
Iterator<Cookie> |
CookieParser.iterator()
This is used to acquire the cookie values from the provided
the provided source text.
|
Copyright © 2019. All rights reserved.