Refactor WebDav implementation
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / util / http / HttpMethod.java
index 2116057a4dfe7233c335c48ad4d540484c3df158..27b4d8f1990d68ef210d4a687529b9df49d060a4 100644 (file)
@@ -1,6 +1,19 @@
 package org.argeo.util.http;
 
+/** Generic HTTP methods. */
 public enum HttpMethod {
-       GET,//
+       OPTIONS, //
+       HEAD, //
+       GET, //
+       POST, //
+       PUT, //
+       DELETE, //
+
+       // WebDav
+       PROPFIND, //
+       PROPPATCH, //
+       MKCOL, //
+       MOVE, //
+       COPY, //
        ;
 }