@CookieParam"
From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @CookieParam("keyString") </source> = Description = '''Target:''' A method's parameter (initial method and co...") |
|||
Line 29: | Line 29: | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 6.0.0 | ||
+ | | February 2012 | ||
+ | | The MVVM was introduced. | ||
+ | |} | ||
{{ZKDevelopersReferencePageFooter}} | {{ZKDevelopersReferencePageFooter}} |
Revision as of 01:50, 9 February 2012
Syntax
@CookieParam("keyString")
Description
Target: A method's parameter (initial method and command method)
Purpose: Tell binder to retrieve this parameter with specified key from HTTP request cookie.
The annotation is applied to initial method's (or command method's) parameter. It declare the applied parameter should come from 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. |