Package io.quarkus.vertx.http.runtime
Class FilterConfig
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.FilterConfig
-
public class FilterConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,String>headerAdditional HTTP Headers always sent in the responseStringmatchesA regular expression for the paths matching this configurationOptional<List<String>>methodsThe HTTP methods for this path configurationOptionalIntorderOrder in which this path config is applied.
-
Constructor Summary
Constructors Constructor Description FilterConfig()
-
-
-
Field Detail
-
matches
@ConfigItem public String matches
A regular expression for the paths matching this configuration
-
header
@ConfigItem public Map<String,String> header
Additional HTTP Headers always sent in the response
-
methods
@ConfigItem public Optional<List<String>> methods
The HTTP methods for this path configuration
-
order
public OptionalInt order
Order in which this path config is applied. Higher priority takes precedence
-
-