Package io.quarkus.vertx.http.runtime
Class AuthConfig
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.AuthConfig
-
public class AuthConfig extends Object
Authentication mechanism and SecurityRealm name information used for configuring HTTP auth instance for the deployment.
-
-
Constructor Summary
Constructors Constructor Description AuthConfig()
-
-
-
Field Detail
-
basic
@ConfigItem public Optional<Boolean> basic
If basic auth should be enabled. If both basic and form auth is enabled then basic auth will be enabled in silent mode. If no authentication mechanisms are configured basic auth is the default.
-
form
@ConfigItem public FormAuthConfig form
Form Auth config
-
proactive
@ConfigItem(defaultValue="true") public boolean proactive
If this is true and credentials are present then a user will always be authenticated before the request progresses. If this is false then an attempt will only be made to authenticate the user if a permission check is performed or the current user is required for some other reason.
-
-