Set All HTTP Methods
This commit is contained in:
parent
cad925cc90
commit
04b0d10330
1 changed files with 9 additions and 1 deletions
|
@ -2,6 +2,14 @@ package be.jeffcheasey88.peeratcode.framework;
|
||||||
|
|
||||||
public enum RequestType{
|
public enum RequestType{
|
||||||
|
|
||||||
GET, POST, OPTIONS;
|
GET,
|
||||||
|
HEAD,
|
||||||
|
POST,
|
||||||
|
PUT,
|
||||||
|
DELETE,
|
||||||
|
CONNECT,
|
||||||
|
OPTIONS,
|
||||||
|
TRACE,
|
||||||
|
PATCH;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue