@HeaderParam"

From Documentation
Line 7: Line 7:
  
 
= Description =
 
= Description =
'''Target:''' A method's parameter (initial method and command method)
+
'''Target:''' A method's parameter (applied on initial and command methods)
  
'''Purpose:''' Tell binder to retrieve this parameter with specified key from HTTP request header.
+
'''Purpose:''' Tell binder to retrieve this parameter with specified key from the HTTP request header.
  
The annotation is applied to initial method's (or command method's) parameter. It declare the applied parameter should come from HTTP request header with specified key.
+
The annotation is applied to the initial (or command) method's parameter. It declare the applied parameter should come from HTTP request header with specified key.
  
 
= Example =
 
= Example =

Revision as of 04:45, 10 February 2012

Syntax

@HeaderParam("keyString")

Description

Target: A method's parameter (applied on initial and command methods)

Purpose: Tell binder to retrieve this parameter with specified key from the HTTP request header.

The annotation is applied to the initial (or command) method's parameter. It declare the applied parameter should come from HTTP request header with specified key.

Example

public class HttpParamVM {

	String headerParam;
	
	@Init
	public void init(@HeaderParam("user-agent")String browser){
		headerParam = browser;
	}
}



Version History

Last Update : 2012/02/10


Version Date Content
6.0.0 February 2012 The MVVM was introduced.




Last Update : 2012/02/10

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