Package javax.ws.rs
Annotation Interface Encoded
@Target({PARAMETER,METHOD,FIELD,CONSTRUCTOR,TYPE})
@Retention(RUNTIME)
@Documented
public @interface Encoded
Disables automatic decoding of parameter values bound using
QueryParam
,
PathParam
, FormParam
or MatrixParam
.
Using this annotation on a method will disable decoding for all parameters.
Using this annotation on a class will disable decoding for all parameters of
all methods.- Since:
- 1.0
- See Also: