interface |
Connect |
Annotation to configure a route to handle CONNECT requests.
|
interface |
Delete |
Annotation to configure a route to handle DELETE requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
DELETE requests.
|
interface |
Endpoint |
Annotation to configure a route to handle all HTTP requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
requests.
|
interface |
Get |
Annotation to configure a route to handle GET requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
GET requests.
|
interface |
Head |
Annotation to configure a route to handle HEAD requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
HEAD requests.
|
interface |
Options |
Annotation to configure a route to handle OPTIONS requests
|
interface |
Patch |
Annotation to configure a route to handle PATCH requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
PATCH requests.
|
interface |
Post |
Annotation to configure a route to handle POST requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
POST requests.
|
interface |
Put |
Annotation to configure a route to handle PUT requests
Set the value to configure for a specific (possibly wild-card) path, or leave empty to handle all
PUT requests.
|