Exemplo n.º 1
0
 public static void start(String databaseName, String databasePath) {
   if (isOnline()) {
     Logger.error("Server Already online");
   } else {
     instance.databaseName = databaseName;
     instance.databasePath = databasePath;
     instance.startServer();
   }
 }
Exemplo n.º 2
0
 public static void stop() {
   if (isOnline()) {
     instance.stopServer();
   } else {
     Logger.error("Server not online");
   }
 }
Exemplo n.º 3
0
 public static boolean isOnline() {
   return instance.isServerOnline();
 }