com.google.api.server.spi.config
Class ApiMethod.HttpMethod
- java.lang.Object
-
- com.google.api.server.spi.config.ApiMethod.HttpMethod
-
- Enclosing class:
- ApiMethod
public static class ApiMethod.HttpMethod extends java.lang.Object
Constants of HTTP method names
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
DELETE
An HTTP DELETE call.static java.lang.String
GET
An HTTP GET call.static java.lang.String
POST
An HTTP POST call.static java.lang.String
PUT
An HTTP PUT call.
-
Constructor Summary
Constructors Constructor and Description HttpMethod()
-
-
-
Field Detail
-
GET
public static final java.lang.String GET
An HTTP GET call. Used for retrieving resources.- See Also:
- Constant Field Values
-
POST
public static final java.lang.String POST
An HTTP POST call. Used for creating resources or custom methods.- See Also:
- Constant Field Values
-
PUT
public static final java.lang.String PUT
An HTTP PUT call. Used for updating resources.- See Also:
- Constant Field Values
-
DELETE
public static final java.lang.String DELETE
An HTTP DELETE call. Used for deleting resources.- See Also:
- Constant Field Values
-
-