vc.corba.server
Class ServerConstants

java.lang.Object
  |
  +--vc.corba.server.ServerConstants

public class ServerConstants
extends java.lang.Object

ServerConstants is a class that packs all the constants related to the CORBA/VersionControl server. Most of it's fields will be loaded from the VCServer.properties file by PropertyLoader class when the VersionControl server is initialized. These properties/constants will be used by different classes of VersionControl server.


Field Summary
static java.lang.String EmptyString
          Empty string
static int ExceptionCode_NoDiskMapIsSet
          Exception code for indicating that the disk map is not set for project element
static java.lang.String ExceptionDesc_NoDiskMapForDir
          Description for the Exception that the disk map is not set for the directory
static java.lang.String ExceptionDesc_NoDiskMapForFile
          Description for the Exception that the disk map is not set for the file
static java.lang.String FileVersionName_Latest
          String indicating the latest version name of a file
static java.lang.String LogFileName
          Name of the file where the log is written for VersionControl server
static java.lang.String ORB_IPAddress
          IP address of the ORB server VersionControl is going to publish
static java.lang.String ORB_Port
          Port number of the ORB server VersionControl is going to publish
 
Constructor Summary
ServerConstants()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ORB_IPAddress

public static java.lang.String ORB_IPAddress
IP address of the ORB server VersionControl is going to publish

ORB_Port

public static java.lang.String ORB_Port
Port number of the ORB server VersionControl is going to publish

EmptyString

public static final java.lang.String EmptyString
Empty string

LogFileName

public static java.lang.String LogFileName
Name of the file where the log is written for VersionControl server

ExceptionCode_NoDiskMapIsSet

public static final int ExceptionCode_NoDiskMapIsSet
Exception code for indicating that the disk map is not set for project element

ExceptionDesc_NoDiskMapForDir

public static final java.lang.String ExceptionDesc_NoDiskMapForDir
Description for the Exception that the disk map is not set for the directory

ExceptionDesc_NoDiskMapForFile

public static final java.lang.String ExceptionDesc_NoDiskMapForFile
Description for the Exception that the disk map is not set for the file

FileVersionName_Latest

public static final java.lang.String FileVersionName_Latest
String indicating the latest version name of a file
Constructor Detail

ServerConstants

public ServerConstants()