ByMethodSpec |
ByMethodSpec.delete(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of DELETE.
|
ByMethodSpec |
ByMethodSpec.delete(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of DELETE.
|
ByMethodSpec |
ByMethodSpec.delete(Block block) |
Defines the action to to take if the request has a HTTP method of DELETE.
|
ByMethodSpec |
ByMethodSpec.get(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of GET.
|
ByMethodSpec |
ByMethodSpec.get(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of GET.
|
ByMethodSpec |
ByMethodSpec.get(Block block) |
Defines the action to to take if the request has a HTTP method of GET.
|
ByMethodSpec |
ByMethodSpec.named(String methodName,
Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of methodName .
|
ByMethodSpec |
ByMethodSpec.named(String methodName,
Handler handler) |
Inserts the handler to chain if the request has a HTTP method of methodName .
|
ByMethodSpec |
ByMethodSpec.named(String methodName,
Block block) |
Defines the action to to take if the request has a HTTP method of methodName .
|
ByMethodSpec |
ByMethodSpec.options(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of OPTIONS.
|
ByMethodSpec |
ByMethodSpec.options(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of OPTIONS.
|
ByMethodSpec |
ByMethodSpec.options(Block block) |
Defines the action to to take if the request has a HTTP method of OPTIONS.
|
ByMethodSpec |
ByMethodSpec.patch(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of PATCH.
|
ByMethodSpec |
ByMethodSpec.patch(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of PATCH.
|
ByMethodSpec |
ByMethodSpec.patch(Block block) |
Defines the action to to take if the request has a HTTP method of PATCH.
|
ByMethodSpec |
ByMethodSpec.post(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of POST.
|
ByMethodSpec |
ByMethodSpec.post(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of POST.
|
ByMethodSpec |
ByMethodSpec.post(Block block) |
Defines the action to to take if the request has a HTTP method of POST.
|
ByMethodSpec |
ByMethodSpec.put(Class<? extends Handler> clazz) |
Inserts the handler to chain if the request has a HTTP method of PUT.
|
ByMethodSpec |
ByMethodSpec.put(Handler handler) |
Inserts the handler to chain if the request has a HTTP method of PUT.
|
ByMethodSpec |
ByMethodSpec.put(Block block) |
Defines the action to to take if the request has a HTTP method of PUT.
|