Interface ManagementAuthConfig


public interface ManagementAuthConfig
Authentication for the management interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    If basic auth should be enabled.
    boolean
    If authentication for the management interface should be enabled.
    boolean
    If this is true and credentials are present then a user will always be authenticated before the request progresses.
  • Method Details

    • enabled

      @WithDefault("${quarkus.management.auth.basic:false}") boolean enabled()
      If authentication for the management interface should be enabled.
    • basic

      Optional<Boolean> basic()
      If basic auth should be enabled.
    • proactive

      @WithDefault("true") 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.