vc.corba.client
Class ClientConstants

java.lang.Object
  |
  +--vc.corba.client.ClientConstants

public class ClientConstants
extends java.lang.Object

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


Field Summary
static java.lang.String Connection_Client_IPAddress
          IP Address of the machine on which the VersionControl client application is running
static java.lang.String Connection_Password
          Password of the user using the VersionControl client
static java.lang.String Connection_UserID
          User ID of the user using the VersionControl client
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 int Frame_Hieght
          Hieght of the VersionControl client's main window
static int Frame_Width
          Width of the VersionControl client's main window
static java.lang.String LogFileName
          Name of the file where the log is written for VersionControl client
static java.lang.String ORB_IPAddress
          IP address of the ORB server (Version Control server) it has to connect to
static java.lang.String ORB_Port
          Port number of the ORB server (Version Control server) it has to connect to
 
Constructor Summary
ClientConstants()
           
 
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 (Version Control server) it has to connect to

ORB_Port

public static java.lang.String ORB_Port
Port number of the ORB server (Version Control server) it has to connect to

Frame_Hieght

public static int Frame_Hieght
Hieght of the VersionControl client's main window

Frame_Width

public static int Frame_Width
Width of the VersionControl client's main window

Connection_UserID

public static java.lang.String Connection_UserID
User ID of the user using the VersionControl client

Connection_Password

public static java.lang.String Connection_Password
Password of the user using the VersionControl client

Connection_Client_IPAddress

public static java.lang.String Connection_Client_IPAddress
IP Address of the machine on which the VersionControl client application is running

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 client

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

ClientConstants

public ClientConstants()