-
Notifications
You must be signed in to change notification settings - Fork 11
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
7 changed files
with
13 additions
and
7 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ plugins { | |
id 'java-library' | ||
} | ||
|
||
version = "2.23.0" | ||
version = "3.0.0" | ||
|
||
repositories { | ||
mavenCentral() | ||
|
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
public interface Storage { | ||
|
||
// if silent is true, do not log anything out on the console | ||
void constructor(String processId, boolean silent); | ||
This comment has been minimized.
Sorry, something went wrong. |
||
void constructor(String processId, boolean silent, boolean isTesting); | ||
|
||
void loadConfig(JsonObject jsonConfig, Set<LOG_LEVEL> logLevels, TenantIdentifier tenantIdentifier) throws InvalidConfigException; | ||
|
||
|
@@ -90,4 +90,8 @@ boolean isUserIdBeingUsedInNonAuthRecipe(AppIdentifier appIdentifier, String cla | |
Set<String> getValidFieldsInConfig(); | ||
|
||
void setLogLevels(Set<LOG_LEVEL> logLevels); | ||
|
||
This comment has been minimized.
Sorry, something went wrong.
KShivendu
Author
Contributor
|
||
String[] getAllTablesInTheDatabase() throws StorageQueryException; | ||
|
||
String[] getAllTablesInTheDatabaseThatHasDataForAppId(String appId) throws StorageQueryException; | ||
} |
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
Bring back the
jar/plugin-interface-2.22.0.jar
file?