com.anaptecs.jeaf.workload.annotations.HTTPMethod Maven / Gradle / Ivy
/**
* Copyright 2004 - 2020 anaptecs GmbH, Burgstr. 96, 72764 Reutlingen, Germany
*
* All rights reserved.
*/
package com.anaptecs.jeaf.workload.annotations;
/**
* Enumeration defines the http methods as they are defined by the HTTP standard. For futher details please refer to
* https://developer.mozilla.org/de/docs/Web/HTTP/Methods
*/
public enum HTTPMethod {
GET, POST, PUT, PATCH, DELETE, HEAD, CONNECT, OPTIONS, TRACE
}