jerqi commented on code in PR #7450:
URL: https://github.com/apache/gravitino/pull/7450#discussion_r2174385518
##########
core/src/main/java/org/apache/gravitino/Configs.java:
##########
@@ -285,6 +285,13 @@ private Configs() {}
.booleanConf()
.createWithDefault(false);
+ public static final ConfigEntry<String> AUTHORIZATION_IMPL =
+ new ConfigBuilder("gravitino.authorization.impl")
+ .doc("Metadata authorization implement")
+ .version(ConfigConstants.VERSION_1_0_0)
+ .stringConf()
+ .createWithDefault("PassThrough");
Review Comment:
You should better to use class name and use reflection to create authorizer.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]