
com.aventstack.chaintest.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
The newest version!
package com.aventstack.chaintest.http;
public enum HttpMethod {
DELETE("DELETE"),
GET("GET"),
HEAD("HEAD"),
OPTIONS("OPTIONS"),
POST("POST"),
PUT("PUT");
private final String _method;
HttpMethod(final String method) {
_method = method;
}
public String getMethod() {
return _method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy