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); }