KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > cjdbc > scenario > tools > ScenarioConstants


1 /**
2  * C-JDBC: Clustered JDBC.
3  * Copyright (C) 2002-2004 French National Institute For Research In Computer
4  * Science And Control (INRIA).
5  * Contact: c-jdbc@objectweb.org
6  *
7  * This library is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by the
9  * Free Software Foundation; either version 2.1 of the License, or any later
10  * version.
11  *
12  * This library is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15  * for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this library; if not, write to the Free Software Foundation,
19  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20  *
21  * Initial developer(s): Nicolas Modrzyk.
22  * Contributor(s): Mathieu Peltier.
23  */

24
25 package org.objectweb.cjdbc.scenario.tools;
26
27 /**
28  * Defines all the constants used in the scenari.
29  *
30  * @author <a HREF="mailto:Nicolas.Modrzyk@inrialpes.fr">Nicolas Modrzyk </a>
31  * @author <a HREF="mailto:mathieu.peltier@emicnetworks.com">Mathieu Peltier
32  * </a>
33  * @version 1.0
34  */

35 public interface ScenarioConstants
36 {
37   /** Default controller hostname. */
38   String JavaDoc DEFAULT_CONTROLLER_HOSTNAME = "127.0.0.1";
39
40   /** Default controller port. */
41   String JavaDoc DEFAULT_CONTROLLER_PORT = "25322";
42
43   /** Default virtual database name to use. */
44   String JavaDoc DEFAULT_VDB_NAME = "myDB";
45
46   /** Default virtual database user name. */
47   String JavaDoc DEFAULT_VDB_USER_NAME = "user";
48
49   /** Default virtual database user password. */
50   String JavaDoc DEFAULT_VDB_USER_PASSWORD = "";
51
52   /** Default controller configuration directory. */
53   String JavaDoc CONTROLLER_DIR = "/controller";
54
55   /** Default virtual database configuration file directory. */
56   String JavaDoc VIRTUALDATABASE_DIR = "/virtualdatabase";
57
58   /** Default controller configuration file. */
59   String JavaDoc CONTROLLER_DEFAULT_FILE = "/controller.xml";
60
61   /** Default virtual database configuration file. */
62   String JavaDoc DATABASE_CONFIG_FILE = "/hsqdb-raidb1.xml";
63
64   /** Process directory for databases files. */
65   String JavaDoc PROCESS_DIRECTORY = "process";
66
67   /** Time to wait between two horizontal test to let jgroups close itself. */
68   long WAIT_TIME_BETWEEN_HORIZONTAL_TEST = 3000;
69
70   /** Time two refresh when shutting down jgroups. */
71   int WAIT_TIME_REFRESH_HORIZONTAL_TEST = 100;
72 }
73
Popular Tags