Package org.nanohttpd.router
Interface RouterNanoHTTPD.UriResponder
- All Known Implementing Classes:
BaseHandler,ChangeHandler,CustomResponseHandler,DefaultAddHandler,DefaultDeleteHandler,DefaultEditHandler,DefaultIndexHandler,DefaultRESTIndexHandler,DefaultViewHandler,Error404Handler,ErrorHandler,ExampleDownloadHandler,ExampleUploadHandler,ExtUsersAddHandler,ExtUsersDeleteHandler,ExtUsersEditHandler,ExtUsersIndexHandler,ExtUsersViewHandler,HomeHandler,LogHandler,LoginHandler,LogoutHandler,NewQRCodeHandler,NoConfigHandler,NoContent204Handler,NoContentAndConfigHandler,NoContentButRouteHandler,NoContentHandler,NotImplementedHandler,OtpHandler,PropertiesAddHandler,PropertiesDeleteHandler,PropertiesEditHandler,PropertiesIndexHandler,PropertiesViewHandler,ResetHandler,RolesAddHandler,RolesDeleteHandler,RolesEditHandler,RolesIndexHandler,RolesViewHandler,RouterNanoHTTPD.DefaultHandler,RouterNanoHTTPD.DefaultStreamHandler,RouterNanoHTTPD.Error404UriHandler,RouterNanoHTTPD.GeneralHandler,RouterNanoHTTPD.IndexHandler,RouterNanoHTTPD.NotImplementedHandler,RouterNanoHTTPD.StaticPageHandler,SettingsHandler,TasksAddHandler,TasksDeleteHandler,TasksEditHandler,TasksIndexHandler,TasksRESTIndexHandler,TasksViewHandler,UsersAddHandler,UsersDeleteHandler,UsersEditHandler,UsersIndexHandler,UsersViewHandler
- Enclosing class:
- RouterNanoHTTPD
public static interface RouterNanoHTTPD.UriResponder
-
Method Summary
Modifier and TypeMethodDescriptionorg.nanohttpd.protocols.http.response.Responsedelete(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) org.nanohttpd.protocols.http.response.Responseget(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) org.nanohttpd.protocols.http.response.Responseother(String method, RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) org.nanohttpd.protocols.http.response.Responsepost(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) org.nanohttpd.protocols.http.response.Responseput(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session)
-
Method Details
-
get
org.nanohttpd.protocols.http.response.Response get(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) -
put
org.nanohttpd.protocols.http.response.Response put(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) -
post
org.nanohttpd.protocols.http.response.Response post(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) -
delete
org.nanohttpd.protocols.http.response.Response delete(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session) -
other
org.nanohttpd.protocols.http.response.Response other(String method, RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, org.nanohttpd.protocols.http.IHTTPSession session)
-