mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-04 05:26:55 +00:00
Debloat the Velocity project
This commit is contained in:
@@ -9,12 +9,20 @@ public interface PlexConfiguration
|
||||
{
|
||||
String getString(String path);
|
||||
|
||||
String getString(String path, String fallback);
|
||||
|
||||
boolean getBoolean(String path);
|
||||
|
||||
boolean getBoolean(String path, boolean fallback);
|
||||
|
||||
int getInt(String path);
|
||||
|
||||
int getInt(String path, int fallback);
|
||||
|
||||
List<String> getStringList(String path);
|
||||
|
||||
List<String> getStringList(String path, List<String> fallback);
|
||||
|
||||
void set(String path, Object value);
|
||||
|
||||
void setComments(String path, List<String> comments);
|
||||
|
||||
Reference in New Issue
Block a user