AppEngineHttpRequestHttpMethod

enum AppEngineHttpRequestHttpMethod : Enum<AppEngineHttpRequestHttpMethod> , ConvertibleToJava<AppEngineHttpRequestHttpMethod>

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See Writing a push task request handler and the App Engine documentation for your runtime on How Requests are Handled.

Entries

Link copied to clipboard

HTTP method unspecified

Link copied to clipboard

HTTP POST

Link copied to clipboard

HTTP GET

Link copied to clipboard

HTTP HEAD

Link copied to clipboard

HTTP PUT

Link copied to clipboard

HTTP DELETE

Link copied to clipboard

HTTP PATCH

Link copied to clipboard

HTTP OPTIONS

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): AppEngineHttpRequestHttpMethod
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: AppEngineHttpRequestHttpMethod
Link copied to clipboard
Link copied to clipboard