Uses of Enum Class
edu.university.ecs.lab.common.models.enums.HttpMethod
Packages that use HttpMethod
Package
Description
-
Uses of HttpMethod in edu.university.ecs.lab.common.models.enums
Fields in edu.university.ecs.lab.common.models.enums declared as HttpMethodModifier and TypeFieldDescriptionprivate final HttpMethod
EndpointTemplate.httpMethod
private final HttpMethod
RestCallTemplate.httpMethod
Methods in edu.university.ecs.lab.common.models.enums that return HttpMethodModifier and TypeMethodDescriptionRestCallTemplate.getHttpFromName
(com.github.javaparser.ast.expr.MethodCallExpr mce) Find the RestTemplate by the method name.RestCallTemplate.getHttpMethodForExchange
(String arguments) Get the HTTP method for the JSF exchange() method call.private static HttpMethod
EndpointTemplate.httpFromMapping
(String mapping) Method to get http method from mappingstatic HttpMethod
Returns the enum constant of this class with the specified name.static HttpMethod[]
HttpMethod.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of HttpMethod in edu.university.ecs.lab.common.models.ir
Fields in edu.university.ecs.lab.common.models.ir declared as HttpMethodModifier and TypeFieldDescriptionprivate HttpMethod
Endpoint.httpMethod
The HTTP method of the endpoint, e.g.private HttpMethod
RestCall.httpMethod
The httpMethod of the api endpoint e.g.Constructors in edu.university.ecs.lab.common.models.ir with parameters of type HttpMethodModifierConstructorDescriptionEndpoint
(Method method, String url, HttpMethod httpMethod) RestCall
(MethodCall methodCall, String url, HttpMethod httpMethod)