Cleaned Http handling a bit.

This commit is contained in:
FrozenCow 2011-03-04 21:31:16 +01:00
parent f7c731f855
commit 630fcf7c93
11 changed files with 143 additions and 51 deletions

View file

@ -0,0 +1,8 @@
package org.dynmap.web;
public final class HttpMethod {
public static final String Get = "GET";
public static final String Post = "POST";
public static final String Put = "PUT";
public static final String Delete = "DELETE";
}