@Target(value={PARAMETER,METHOD}) @Retention(value=RUNTIME) public @interface QueryParam
See the following example:
..@GET@Path("test") public String testOperation(@QueryParam("param1") String value) { return null; }
The parameter value will be bound to the query "param1" parameter sent to the server.
public abstract String value
Copyright © 2016. All rights reserved.