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 00020 const static std::string JOBNAME; 00021 00025 const static std::string TABLE_NAME; 00029 const static std::string FILTER; 00033 const static std::string TERMINATION_INTERVAL; 00037 const static std::string HISTORY_RETENTION_PERIOD; 00041 const static std::string LATEST_RETENTION_PERIOD; 00042 00046 const static unsigned int MAX_VARCHAR_SIZE = 255; 00047 00048 }; 00049 } 00050 } 00051 #endif