-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
29 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -252,6 +252,7 @@ public class ProjectManagerConst { | |
public final static String MANAGE_TOKENS_CRON_EXPRESSION = "MANAGE_TOKENS_CRON_EXPRESSION"; | ||
public final static String CHECK_EXPIRED_ACTIVE_PROJECTS_CRON_EXPRESSION = "CHECK_EXPIRED_ACTIVE_PROJECTS_CRON_EXPRESSION"; | ||
public final static String EXPLORER_URL = "EXPLORER_URL"; | ||
public final static String ENABLE_TOKEN_MANAGER = "ENABLE_TOKEN_MANAGER"; | ||
|
||
// Spring Values (SV) | ||
public final static String HEAD_SV = "${"; | ||
|
@@ -303,13 +304,13 @@ public class ProjectManagerConst { | |
public final static String FOCUS_URL_SV = HEAD_SV + FOCUS_URL + BOTTOM_SV; | ||
public final static String FOCUS_API_KEY_SV = HEAD_SV + FOCUS_API_KEY + BOTTOM_SV; | ||
public final static String ENABLE_EMAILS_SV = HEAD_SV + ENABLE_EMAILS + ":true" + BOTTOM_SV; | ||
public final static String ENABLE_TOKEN_MANAGER_SV = HEAD_SV + ENABLE_TOKEN_MANAGER + ":true" + BOTTOM_SV; | ||
public final static String MANAGE_TOKENS_CRON_EXPRESSION_SV = | ||
HEAD_SV + MANAGE_TOKENS_CRON_EXPRESSION + ":#{'0 0 * * * *'}" + BOTTOM_SV; | ||
public final static String CHECK_EXPIRED_ACTIVE_PROJECTS_CRON_EXPRESSION_SV = | ||
HEAD_SV + CHECK_EXPIRED_ACTIVE_PROJECTS_CRON_EXPRESSION + ":#{'0 0 1,13 * * *'}" + BOTTOM_SV; | ||
public final static String EXPLORER_URL_SV = HEAD_SV + EXPLORER_URL + BOTTOM_SV; | ||
|
||
|
||
// Others | ||
public final static String TEST_EMAIL = "[email protected]"; | ||
public final static String TEST_BRIDGEHEAD = "bridgehead-test"; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
public enum DataShieldProjectStatus { | ||
CREATED, | ||
WITH_DATA, | ||
NOT_FOUND | ||
NOT_FOUND, | ||
INACTIVE | ||
} |
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
public enum DataShieldTokenStatus { | ||
CREATED, | ||
EXPIRED, | ||
NOT_FOUND | ||
NOT_FOUND, | ||
INACTIVE | ||
} |