@Retention(value=RUNTIME)
@Target(value={METHOD,PARAMETER})
public @interface Quoted
When present, arguments wrapped in quotes are treated as a single argument.
For example, /test "hello world" will be parsed as a single argument hello world
instead of two separate arguments "hello and world".
The annotation can also be applied to a parameter to enable quote parsing only for that specific parameter.