/**
  * @param name
  * @return the named property value, or null if it can't be found.
  */
 public static Boolean getBooleanProperty(String name) {
   return PropertiesUtil.getBooleanProperty(name, null);
 }
 /**
  * @param name
  * @return the named property value, or null if it can't be found.
  */
 public static Integer getIntegerProperty(String name) {
   return PropertiesUtil.getIntegerProperty(name, null);
 }