WCParam, use the JAX-RS standard instead (QueryParam,FormParam,HeaderParam,
CookieParam,etc.). The standard annotations are well defined and documented by WADL.@Documented
@Target(value=java.lang.annotation.ElementType.PARAMETER)
@Retention(value=RUNTIME)
@Deprecated
public @interface WCParam
public SimpleDTO copyDTO(@WCParam("dto") SimpleDTO aDTO) {
// SimpleDTO is sent from client in query parameter "dto"
...
}
| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value
Deprecated.
|