Ejemplo n.º 1
0
 public static AcMobileProfilePk createPk(String name) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setName(name);
   return pk;
 }
Ejemplo n.º 2
0
 public static AcMobileProfilePk createWebKey(String webKey) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setWebKey(webKey);
   return pk;
 }
Ejemplo n.º 3
0
 public AcMobileProfile getMobileProfileByWebKey(String webKey) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setWebKey(webKey);
   return getMobileProfile(pk);
 }