@CookieParam

From Documentation
Revision as of 07:14, 8 February 2012 by Hawk (talk | contribs) (Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @CookieParam("keyString") </source> = Description = '''Target:''' A method's parameter (initial method and co...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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;
}




Last Update : 2012/02/08

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.