public static AcMobileProfilePk createPk(String name) { AcMobileProfilePk pk = new AcMobileProfilePk(); pk.setName(name); return pk; }
public static AcMobileProfilePk createWebKey(String webKey) { AcMobileProfilePk pk = new AcMobileProfilePk(); pk.setWebKey(webKey); return pk; }
public AcMobileProfile getMobileProfileByWebKey(String webKey) { AcMobileProfilePk pk = new AcMobileProfilePk(); pk.setWebKey(webKey); return getMobileProfile(pk); }