Interface IMethodHttpHandler
-
- All Superinterfaces:
IHttpHandler
- All Known Implementing Classes:
MethodHttpHandlerAdapter
,V1BridgeConfigurationHttpHandler
,V1CloudflareConfigurationHttpHandler
,V1HttpHandler
,V1HttpHandlerAuthentication
,V1HttpHandlerCluster
,V1HttpHandlerCommand
,V1HttpHandlerDatabase
,V1HttpHandlerGroups
,V1HttpHandlerLocalTemplate
,V1HttpHandlerLocalTemplateFileSystem
,V1HttpHandlerLogout
,V1HttpHandlerModules
,V1HttpHandlerPing
,V1HttpHandlerServices
,V1HttpHandlerShowOpenAPI
,V1HttpHandlerStatus
,V1HttpHandlerTasks
,V1SecurityProtectionHttpHandler
,V1SignConfigurationHttpHandler
,V1SyncProxyConfigurationHttpHandler
public interface IMethodHttpHandler extends IHttpHandler
-
-
Field Summary
-
Fields inherited from interface de.dytanic.cloudnet.driver.network.http.IHttpHandler
PRIORITY_HIGH, PRIORITY_LOW, PRIORITY_LOWEST, PRIORITY_NORMAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
handle(java.lang.String path, IHttpContext context)
void
handleConnect(java.lang.String path, IHttpContext context)
void
handleDelete(java.lang.String path, IHttpContext context)
void
handleGet(java.lang.String path, IHttpContext context)
void
handleHead(java.lang.String path, IHttpContext context)
void
handleOptions(java.lang.String path, IHttpContext context)
void
handlePatch(java.lang.String path, IHttpContext context)
void
handlePost(java.lang.String path, IHttpContext context)
void
handlePut(java.lang.String path, IHttpContext context)
void
handleTrace(java.lang.String path, IHttpContext context)
-
-
-
Method Detail
-
handle
default void handle(java.lang.String path, IHttpContext context) throws java.lang.Exception
- Specified by:
handle
in interfaceIHttpHandler
- Throws:
java.lang.Exception
-
handlePost
void handlePost(java.lang.String path, IHttpContext context) throws java.lang.Exception
- Throws:
java.lang.Exception
-
handleGet
void handleGet(java.lang.String path, IHttpContext context) throws java.lang.Exception
- Throws:
java.lang.Exception
-
handlePut
void handlePut(java.lang.String path, IHttpContext context)
-
handleHead
void handleHead(java.lang.String path, IHttpContext context)
-
handleDelete
void handleDelete(java.lang.String path, IHttpContext context)
-
handlePatch
void handlePatch(java.lang.String path, IHttpContext context)
-
handleTrace
void handleTrace(java.lang.String path, IHttpContext context)
-
handleOptions
void handleOptions(java.lang.String path, IHttpContext context)
-
handleConnect
void handleConnect(java.lang.String path, IHttpContext context)
-
-