Beispiel #1
0
 public Account getAccount(String name) {
   return plugin.getFeDatabase().getAccount(name.toLowerCase());
 }
Beispiel #2
0
 public boolean accountExists(String name) {
   return plugin.getFeDatabase().accountExists(name.toLowerCase());
 }
Beispiel #3
0
 public void removeAccount(String name) {
   plugin.getFeDatabase().removeAccount(name.toLowerCase());
 }
Beispiel #4
0
 public List<Account> getAccounts() {
   return plugin.getFeDatabase().getAccounts();
 }
Beispiel #5
0
 public List<Account> getTopAccounts(int size) {
   return plugin.getFeDatabase().getTopAccounts(size);
 }
Beispiel #6
0
 public List<Account> getTopAccounts() {
   return plugin.getFeDatabase().getTopAccounts(plugin.getConfig().getInt("topsize"));
 }
Beispiel #7
0
 public void clean() {
   plugin.getFeDatabase().clean();
 }