# HG changeset patch # User Raimund Renkert # Date 1427129451 -3600 # Node ID bb76a5d7a98db1f2b238c6d74f3f8050eb00859a # Parent b2db328122605d39fc265069a992674febd10fc0 Added enum for http request method. diff -r b2db32812260 -r bb76a5d7a98d src/main/java/de/intevation/lada/util/rest/RequestMethod.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/de/intevation/lada/util/rest/RequestMethod.java Mon Mar 23 17:50:51 2015 +0100 @@ -0,0 +1,5 @@ +package de.intevation.lada.util.rest; + +public enum RequestMethod { + GET, PUT, POST, DELETE +}