Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / urlfetch / HTTPMethod.java
blob68eb2d2d5baeb540da8cf61943becc2924322709
1 // Copyright 2007 Google Inc. All rights reserved.
3 package com.google.appengine.api.urlfetch;
5 /**
6 * {@code HTTPMethod} is an enumeration of HTTP methods that can be
7 * sent to a remote server via the {@code URLFetchService}.
9 */
10 public enum HTTPMethod {
11 GET,
12 POST,
13 HEAD,
14 PUT,
15 DELETE,
16 PATCH