]> git.argeo.org Git - lgpl/argeo-commons.git/blob - HttpMethod.java
27b4d8f1990d68ef210d4a687529b9df49d060a4
[lgpl/argeo-commons.git] / HttpMethod.java
1 package org.argeo.util.http;
2
3 /** Generic HTTP methods. */
4 public enum HttpMethod {
5 OPTIONS, //
6 HEAD, //
7 GET, //
8 POST, //
9 PUT, //
10 DELETE, //
11
12 // WebDav
13 PROPFIND, //
14 PROPPATCH, //
15 MKCOL, //
16 MOVE, //
17 COPY, //
18 ;
19 }