Uses of Enum Class
com.pixelservices.flash.components.http.HttpMethod
Packages that use HttpMethod
Package
Description
-
Uses of HttpMethod in com.pixelservices.flash.components
Methods in com.pixelservices.flash.components with parameters of type HttpMethodModifier and TypeMethodDescriptionvoid
FlashServer.redirect
(String fromPath, String toPath, HttpMethod method) void
FlashServer.registerRoute
(HttpMethod method, String fullPath, RequestHandler handler) void
FlashServer.registerRoute
(HttpMethod method, String fullPath, SimpleHandler handler) void
FlashServer.registerRoute
(HttpMethod method, String fullPath, SimpleHandler handler, HandlerType handlerType) void
FlashServer.unregisterRoute
(HttpMethod method, String fullPath) -
Uses of HttpMethod in com.pixelservices.flash.components.http
Methods in com.pixelservices.flash.components.http that return HttpMethodModifier and TypeMethodDescriptionstatic HttpMethod
Gets the HttpMethod corresponding to the provided string.HandlerSpecification.getMethod()
Retrieves the HTTP method for this handler.static HttpMethod
Returns the enum constant of this class with the specified name.static HttpMethod[]
HttpMethod.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in com.pixelservices.flash.components.http with parameters of type HttpMethodModifierConstructorDescriptionHandlerSpecification
(RequestHandler requestHandler, String endpoint, HttpMethod method, boolean enforcedNonNullBody) Constructs a HandlerSpecification for a given request handler, endpoint, HTTP method, and body enforcement policy. -
Uses of HttpMethod in com.pixelservices.flash.components.http.lifecycle
Methods in com.pixelservices.flash.components.http.lifecycle that return HttpMethodMethods in com.pixelservices.flash.components.http.lifecycle with parameters of type HttpMethodModifier and TypeMethodDescriptionstatic String
Request.createRouteKey
(HttpMethod method, String path) Creates a unique route key combining method and path. -
Uses of HttpMethod in com.pixelservices.flash.components.http.routing
Methods in com.pixelservices.flash.components.http.routing with parameters of type HttpMethod -
Uses of HttpMethod in com.pixelservices.flash.components.http.routing.models
Methods in com.pixelservices.flash.components.http.routing.models that return HttpMethodConstructors in com.pixelservices.flash.components.http.routing.models with parameters of type HttpMethodModifierConstructorDescriptionRequestInfo
(HttpMethod method, String path, List<String> headers) RouteEntry
(HttpMethod method, String path, RequestHandler handler, HandlerType handlerType, HandlerPoolManager poolManager) Constructor for lambda-based handlers (using a special pool)RouteEntry
(HttpMethod method, String path, Class<? extends RequestHandler> handlerClass, HandlerType handlerType, HandlerPoolManager poolManager) Constructor for class-based handlers that will use pooling -
Uses of HttpMethod in com.pixelservices.flash.components.http.routing.trie
Methods in com.pixelservices.flash.components.http.routing.trie with parameters of type HttpMethodModifier and TypeMethodDescriptionDynamicRoutePrefixTrie.search
(HttpMethod method, String path) ParameterizedRouteTrie.search
(HttpMethod method, String path)