コード例 #1
0
 public static AcMobileProfilePk createPk(String name) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setName(name);
   return pk;
 }
コード例 #2
0
 public static AcMobileProfilePk createWebKey(String webKey) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setWebKey(webKey);
   return pk;
 }
コード例 #3
0
 public AcMobileProfile getMobileProfileByWebKey(String webKey) {
   AcMobileProfilePk pk = new AcMobileProfilePk();
   pk.setWebKey(webKey);
   return getMobileProfile(pk);
 }