@HeaderParam
From Documentation
Syntax
@HeaderParam("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 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.
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. |