Annotation Type | Description |
---|---|
DELETE |
Annotation used to mark a resource method that responds to HTTP DELETE
requests.
|
DoNotRenderPage |
With this runtime annotation, a developer is able to mark a controller's
method in order to not render a page after its execution.
It's only valid to methods that return void, because methods that return an object, will always serialize that object in the response. Methods that don't return anything have to be annotated so the framework is able to know what to do after the execution. |
GET |
Annotation used to mark a resource method that responds to HTTP GET requests.
|
POST |
Annotation used to mark a resource method that responds to HTTP POST
requests.
|
PUT |
Annotation used to mark a resource method that responds to HTTP PUT requests.
|
Copyright © 2012 ElPaso Software. All Rights Reserved.