Package org.projectnessie.server.config
Interface QuarkusNessieAuthenticationConfig
-
@StaticInitSafe @ConfigMapping(prefix="nessie.server.authentication") public interface QuarkusNessieAuthenticationConfigConfiguration for Nessie authentication settings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>anonymousPaths()Returns the set of HTTP URL paths that are permitted to be serviced without authentication.booleanenabled()Returnstrueif Nessie authentication is enabled.
-
-
-
Method Detail
-
enabled
@WithName("enabled") @WithDefault("false") boolean enabled()Returnstrueif Nessie authentication is enabled.
-
anonymousPaths
@WithName("anonymous-paths") java.util.Set<java.lang.String> anonymousPaths()Returns the set of HTTP URL paths that are permitted to be serviced without authentication.
-
-