Uses of Enum Class
com.bonitasoft.processbuilder.enums.RestHttpMethod
Packages that use RestHttpMethod
Package
Description
Provides enumerations (enums) for defining and managing a set of named constants
used throughout the application.
Provides Record classes (available in Java 16 and later) which serve as
containers for immutable and transparent data structures.
-
Uses of RestHttpMethod in com.bonitasoft.processbuilder.enums
Methods in com.bonitasoft.processbuilder.enums that return RestHttpMethodModifier and TypeMethodDescriptionstatic RestHttpMethodReturns the enum constant of this class with the specified name.static RestHttpMethod[]RestHttpMethod.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.bonitasoft.processbuilder.enums that return types with arguments of type RestHttpMethodModifier and TypeMethodDescriptionstatic Optional<RestHttpMethod>Finds an HTTP method by its key (case-insensitive). -
Uses of RestHttpMethod in com.bonitasoft.processbuilder.records
Methods in com.bonitasoft.processbuilder.records that return RestHttpMethodModifier and TypeMethodDescriptionRestServiceRequest.method()Returns the value of themethodrecord component.Methods in com.bonitasoft.processbuilder.records with parameters of type RestHttpMethodConstructors in com.bonitasoft.processbuilder.records with parameters of type RestHttpMethodModifierConstructorDescriptionRestServiceRequest(String url, RestHttpMethod method, Map<String, String> headers, Map<String, String> queryParams, String body, RestContentType contentType, RestAuthConfig auth, int timeoutMs, boolean followRedirects, boolean verifySsl) Compact constructor with validation and defaults.