@Retention(value=RUNTIME) @Target(value=METHOD) public @interface DeleteAction
The 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
Returns the request paths that this action mapped to.
It is possible to use variable in the path, like /service/{id}, however it is up to the MVC server implementation to decide the format
Copyright © 2014–2018 OSGL (Open Source General Library). All rights reserved.