Package org.projectnessie.server.config
Interface QuarkusNessieAuthorizationConfig
-
@StaticInitSafe @ConfigMapping(prefix="nessie.server.authorization") public interface QuarkusNessieAuthorizationConfigConfiguration for Nessie authorization settings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanenabled()Returnstrueif Nessie authorization is enabled.java.util.Map<java.lang.String,java.lang.String>rules()The authorization rules where the key represents the rule id and the value the CEL expression.
-
-
-
Method Detail
-
enabled
@WithName("enabled") @WithDefault("false") boolean enabled()Returnstrueif Nessie authorization is enabled.- Returns:
trueif Nessie authorization is enabled.
-
rules
java.util.Map<java.lang.String,java.lang.String> rules()
The authorization rules where the key represents the rule id and the value the CEL expression.- Returns:
- The authorization rules where the key represents the rule id and the value the CEL expression.
-
-