@HttpMethod annotation does not accept HttpMethod.Methods enum
The @HttpMethod annotation seems to declare its value() property as a String instead of Methods.
So you always have to specify the literal method "GET", "POST", "PUT", "DELETE", "OPTIONS", etc instead of just being able to use the HttpMethod.Methods enum Methods.GET, Methods.POST, etc...
This does not make sense... Is there something I am doing wrong?
-David

