Package org.kohsuke.stapler.verb
Annotation Interface POST
@Target(METHOD)
@Retention(RUNTIME)
@Documented
@InterceptorAnnotation(value=HttpVerbInterceptor.class,
stage=SELECTION)
public @interface POST
Restricts a
WebMethod to a specific HTTP method 'POST'.
Unlike RequirePOST, this annotation simply skips routing the current request
to the current web method, and continues searching other available routes.
- Author:
- Kohsuke Kawaguchi