@Target(value={PARAMETER,METHOD}) @Retention(value=RUNTIME) @Documented public @interface HeaderParam
See the following example:
..@GET@Path("test") public String testOperation(@HeaderParam("header") String value) { return null; }
The header "header" will be bound to the value parameter when processing this method invocation.
public abstract String value
Copyright © 2016. All rights reserved.