App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / urlfetch / HTTPMethod.java
blobf07f20791633c9dcb51122ca2bee229116f1846d
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