Uses of Enum Class
com.yahoo.application.container.handler.Request.Method
Packages that use Request.Method
Package
Description
API for passing requests and inspecting responses to a locally instantiated container.
-
Uses of Request.Method in com.yahoo.application.container.handler
Methods in com.yahoo.application.container.handler that return Request.MethodModifier and TypeMethodDescriptionRequest.getMethod()static Request.MethodReturns the enum constant of this class with the specified name.static Request.Method[]Request.Method.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in com.yahoo.application.container.handler with parameters of type Request.MethodModifierConstructorDescriptionRequest(String uri, byte[] body, Request.Method method) Creates a Request with a message body.Request(String uri, byte[] body, Request.Method method, Principal principal) Creates a Request with a message body, method and user principal.Request(String uri, byte[] body, Request.Method method, Principal principal, SocketAddress remoteAddress) Creates a Request with a message body, method and user principal.Request(String uri, String body, Request.Method method) Creates a Request with a message body.