java.lang.Object | |
↳ | com.microstrategy.web.platform.AbstractConfigurableContainerServices.CookieWrapper |
A implementation of GenericCookies.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CookieWrapper(String name, String wholeValue, ContainerServicesNamespace namespace) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int |
getMaxAge()
Returns the maximum age of the current cookie.
| ||||||||||
String |
getName()
Returns the name of the cookie.
| ||||||||||
String |
getNativeName()
Returns the native cookie name.
| ||||||||||
String |
getNativeValue()
Returns the native cookie value.
| ||||||||||
String |
getPath()
Returns the path associated with the current cookie.
| ||||||||||
String |
getValue()
Returns the value of the cookie.
| ||||||||||
boolean |
isHttpOnly()
Set the http only flag
| ||||||||||
boolean |
isSecure()
Indicates if the client is only to return the cookie in subsequent requests if
those requests use Secure Hypertext Transfer Protocol (HTTPS); The default is false.
| ||||||||||
void |
setHttpOnly(boolean value)
get the http only flag
| ||||||||||
void |
setMaxAge(int maxAge)
Set the maximum age for a cookie.
| ||||||||||
void |
setPath(String path)
This method modifies the path associated with the cookie.
| ||||||||||
void |
setSecure(boolean value)
Sets the security level of a cookie
| ||||||||||
void |
setValue(String value)
This method modifies the value of the cookie in current namespace.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Returns the maximum age of the current cookie.
Returns the name of the cookie.
String
which is the name of the cookie. In non-namespace mode, this name is the same
as the native cookie name using in browser. In namespace mode, the name is the native name without MicroStrategy prefix.
The namespace mode can be configured in ContainerServices.properties. Returns the native cookie name.
Returns the native cookie value.
Returns the path associated with the current cookie.
Returns the value of the cookie.
String
which is the value of the cookie. In non-namespace mode, this value is the same as
the native cookie value stored in browser. In namespace mode, the value contains only the cookie value in current namespace.
The namespace mode can be configured in ContainerServices.properties. Set the http only flag
Indicates if the client is only to return the cookie in subsequent requests if those requests use Secure Hypertext Transfer Protocol (HTTPS); The default is false.
get the http only flag
Set the maximum age for a cookie.
maxAge | The age in terms of a number of seconds. |
---|
This method modifies the path associated with the cookie.
path | The String for the path.
|
---|
Sets the security level of a cookie
value | true if the client is to return the cookie only if the request is using HTTPS. |
---|
This method modifies the value of the cookie in current namespace.
value | The String value to assign to the cookie.
|
---|