@HeaderParam"

From Documentation
m ((via JWB))
m ((via JWB))
 
Line 36: Line 36:
  
 
=Version History=
 
=Version History=
{{LastUpdated}}
+
 
 
{| class='wikitable' | width="100%"
 
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content

Latest revision as of 07:36, 8 July 2022

Stop.png This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/parameters/headerparam for more up to date information.


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

Version Date Content
6.0.0 February 2012 The MVVM was introduced.




Last Update : 2022/07/08

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