1 24 25 package org.objectweb.cjdbc.scenario.tools; 26 27 35 public interface ScenarioConstants 36 { 37 38 String DEFAULT_CONTROLLER_HOSTNAME = "127.0.0.1"; 39 40 41 String DEFAULT_CONTROLLER_PORT = "25322"; 42 43 44 String DEFAULT_VDB_NAME = "myDB"; 45 46 47 String DEFAULT_VDB_USER_NAME = "user"; 48 49 50 String DEFAULT_VDB_USER_PASSWORD = ""; 51 52 53 String CONTROLLER_DIR = "/controller"; 54 55 56 String VIRTUALDATABASE_DIR = "/virtualdatabase"; 57 58 59 String CONTROLLER_DEFAULT_FILE = "/controller.xml"; 60 61 62 String DATABASE_CONFIG_FILE = "/hsqdb-raidb1.xml"; 63 64 65 String PROCESS_DIRECTORY = "process"; 66 67 68 long WAIT_TIME_BETWEEN_HORIZONTAL_TEST = 3000; 69 70 71 int WAIT_TIME_REFRESH_HORIZONTAL_TEST = 100; 72 } 73 | Popular Tags |