forked from apache/linkis
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: optimizing code * fix: IAST fix * fix: IAST fix * fix: IAST fix * fix: Code Review fix * fix: Code Review fix
- Loading branch information
1 parent
9d41251
commit e218bfc
Showing
5 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...nhancements/linkis-cs-server/src/main/java/org/apache/linkis/cs/conf/CSConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.apache.linkis.cs.conf; | ||
|
||
import org.apache.linkis.common.conf.CommonVars; | ||
|
||
public class CSConfiguration { | ||
public static final CommonVars<String> CONTEXT_VALUE_TYPE_PREFIX_WHITE_LIST = | ||
CommonVars.apply("linkis.context.value.type.prefix.whitelist", "org.apache.linkis"); | ||
|
||
public static final CommonVars<Boolean> ENABLE_CONTEXT_VALUE_TYPE_PREFIX_WHITE_LIST_CHECK = | ||
CommonVars.apply("linkis.context.value.type.prefix.whitelist.check.enable", true); | ||
} |