Set All HTTP Methods

This commit is contained in:
jeffcheasey88 2023-07-26 12:12:48 +02:00
parent cad925cc90
commit 04b0d10330

View file

@ -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;
} }