@CookieParam"
From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @CookieParam("keyString") </source> = Description = '''Target:''' A method's parameter (initial method and co...") |
m ((via JWB)) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/syntax/cookieparam.html zk-mvvm-book/8.0/syntax/viewmodel/parameters/cookieparam]|}} | ||
+ | |||
=Syntax= | =Syntax= | ||
Line 8: | Line 10: | ||
= Description = | = Description = | ||
− | '''Target:''' A method's parameter (initial | + | '''Target:''' A method's parameter (for initial and command methods) |
− | '''Purpose:''' Tell binder to retrieve this parameter with specified key from HTTP request cookie. | + | '''Purpose:''' Tell binder to retrieve this parameter with specified key from the HTTP request cookie. |
− | The annotation is applied to initial | + | The annotation is applied to initial (or command) method's parameter. It declare the applied parameter should come from the HTTP request cookie with specified key. |
= Example = | = Example = | ||
Line 29: | Line 31: | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | =Version History= | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 6.0.0 | ||
+ | | February 2012 | ||
+ | | The MVVM was introduced. | ||
+ | |} | ||
{{ZKDevelopersReferencePageFooter}} | {{ZKDevelopersReferencePageFooter}} |
Latest revision as of 07:36, 8 July 2022
This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/parameters/cookieparam for more up to date information.
Syntax
@CookieParam("keyString")
Description
Target: A method's parameter (for initial and command methods)
Purpose: Tell binder to retrieve this parameter with specified key from the HTTP request cookie.
The annotation is applied to initial (or command) method's parameter. It declare the applied parameter should come from the HTTP request cookie with specified key.
Example
public class HttpParamVM {
String cookieParam;
@Init
public void init(@CookieParam("nosuch") String guess){
cookieParam = guess;
}
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |