@Documented
@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
public @interface HttpMethod
| Modifier and Type | Fields and Description |
|---|---|
static java.lang.String |
ALL
Deprecated.
Replaced by
ANY. |
static java.lang.String |
ANY
ANY filter.
|
static java.lang.String |
DELETE
HTTP DELETE controllerMethod.
|
static java.lang.String |
GET
HTTP GET controllerMethod.
|
static java.lang.String |
HEAD
HTTP HEAD controllerMethod.
|
static java.lang.String |
OPTIONS
HTTP OPTIONS controllerMethod.
|
static java.lang.String |
PATCH
HTTP PATCH controllerMethod.
|
static java.lang.String |
POST
HTTP POST controllerMethod.
|
static java.lang.String |
PUT
HTTP PUT controllerMethod.
|
| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value
Specifies the name of an HTTP controllerMethod.
|
@Deprecated public static final java.lang.String ALL
ANY.Copyright © 2023. All rights reserved.