@Retention(value=RUNTIME) @Target(value=METHOD) public @interface DeleteAction
DeleteAction annotation is used to mark a
method (the action handler) that should be executed
to handle a DELETE http request
Thus @DeleteAction("/foo") shall be treated as
Action(value="/foo", methods={H.Method.DELETE})
public abstract String[] value
/service/{id}, however it is up to
the MVC server implementation to decide the
formatCopyright © 2017. All Rights Reserved.