public static String getPropertySetterName(String propertyName) {
   return "set" + StringUtils.upperCaseFirstLetter(propertyName);
 }
 public static String getAltPropertyGetterName(String propertyName) {
   return "is" + StringUtils.upperCaseFirstLetter(propertyName);
 }