1 package org.myoodb.simpleSslWeb; 25 26 public class Server 27 { 28 public static int PORT = 54321; 29 public static String DIRECTORY = "db"; 30 public static String USERNAME = "admin"; 31 public static String PASSWORD = "admin"; 32 public static String WEBCONFIG = "webconfig.xml"; 33 34 public static void main(String args[]) throws Exception  35 { 36 org.myoodb.core.MyOodbMain.main(new String [] {"-c", "-d" + DIRECTORY, "-p" + PORT, "-u" + USERNAME + ":" + PASSWORD, "-w" + WEBCONFIG}); 37 } 38 } 39 | Popular Tags |