KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > Util > VMProperties


1 /**
2  * VMProperties.java is a part of the SOFA project.
3  * This file was created by pepan on 20.3.2003.
4  */

5 package SOFA.Util;
6
7 /**
8  * Contains constants of VM properties. These can be specified as an argument when
9  * the Java VM is started - they must be prefixed with '-D' string.
10  *
11  * @author Petr Panuska
12  */

13 public class VMProperties {
14   public static final String JavaDoc TR_DIR = "sofa.tr.dir";
15   public static final String JavaDoc TR_URL = "sofa.tr.url";
16
17   /**
18    * Name of TR running on this SOFAnode.
19    * This property has been introduced by PP since TR and InOut were being implemented.
20    */

21   public static final String JavaDoc TR_NAME = "sofa.tr.name";
22
23   public static final String JavaDoc RMI_PORT = "sofa.rmiport";
24   public static final String JavaDoc RMI_PORT_DEF = "1099";
25
26   public static final String JavaDoc RMI_HOST = "sofa.rmihost";
27   public static final String JavaDoc RMI_HOST_DEF = "localhost";
28
29   public static final String JavaDoc NODE_NAME = "sofa.nodename";
30   
31   public static final String JavaDoc NET_INFO_BASE_DIR = "sofa.net.infobasedir";
32   public static final String JavaDoc NET_BIN_BUNDLES_DIR = "sofa.net.binbundlesdir";
33   public static final String JavaDoc NET_SHARE_CLIENT_CACHE_DIR = "sofa.net.shareclientcachedir";
34   
35   public static final String JavaDoc NET_SHARE_ALL_COMPONENTS = "sofa.net.shareallcomponents";
36   public static final String JavaDoc NET_SHARE_ALL_COMPONENTS_DEF = "false";
37   
38   public static final String JavaDoc NET_SEARCH_TIMEOUT = "sofa.net.searchtimeout";
39   public static final String JavaDoc NET_SEARCH_TIMEOUT_DEF = "5000";
40
41   public static final String JavaDoc NET_SHOW_DETAILED_EXCEPTIONS = "sofa.net.showdetailedexceptions";
42 }
43
Popular Tags