Example #1
0
 public static String getUserName() {
   checkProperties();
   return Strings.trim(pp.getProperty("username"));
 }
Example #2
0
 public static String getUrl() {
   checkProperties();
   return Strings.trim(pp.getProperty("url"));
 }
Example #3
0
 public static String getPassword() {
   checkProperties();
   return Strings.trim(pp.getProperty("password"));
 }
Example #4
0
 public static String getDriver() {
   checkProperties();
   return Strings.trim(pp.getProperty("driver"));
 }