-
Notifications
You must be signed in to change notification settings - Fork 360
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
5 changed files
with
166 additions
and
43 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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
package io.lakefs; | ||
|
||
class Constants { | ||
public static final String SEPARATOR = "/"; | ||
public static final String URI_SCHEME = "lakefs"; | ||
public static final String URI_SEPARATOR = "/"; | ||
public static final String FS_LAKEFS_ENDPOINT_KEY = "fs.lakefs.endpoint"; | ||
public static final String FS_LAKEFS_ACCESS_KEY = "fs.lakefs.access.key"; | ||
public static final String FS_LAKEFS_SECRET_KEY = "fs.lakefs.secret.key"; | ||
public static final String FS_LAKEFS_LIST_AMOUNT_KEY = "fs.lakefs.list.amount"; | ||
public static final int DEFAULT_LIST_AMOUNT = 1000; | ||
} |
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