public static Integer getIdFromWebKey(String webKey) {
   if (webKey == null) return null;
   return AcBillingSubscriberBillingPk.createWebKey(webKey).getId();
 }
 public static String getWebKey(Integer id) {
   return AcBillingSubscriberBillingPk.createPk(id).getWebKey();
 }