00001 #ifndef LOGGING_CONST_H 00002 #define LOGGING_CONST_H 00003 #include <string> 00004 00005 namespace rgma 00006 { 00007 namespace log4cpp 00008 { 00009 class Constants 00010 { 00011 00012 public: 00013 00014 virtual ~Constants(){}; 00015 00019 const static std::string HELP_LONG_OPT; 00020 00024 const static std::string HELP_SHORT_OPT; 00025 00029 const static std::string FORMAT_OPT; 00030 00034 const static std::string JOBNAME_OPT ; 00035 00040 const static std::string JOBNAME; 00041 00045 const static std::string TABLE_NAME; 00049 const static std::string FILTER; 00053 const static std::string TERMINATION_INTERVAL; 00057 const static std::string HISTORY_RETENTION_PERIOD; 00061 const static std::string LATEST_RETENTION_PERIOD; 00062 00066 const static unsigned int MAX_VARCHAR_SIZE = 255; 00067 00068 }; 00069 } 00070 } 00071 #endif