private PersonLocal findPerson(final int personId) throws FinderException {
return personLocalHome.findByPrimaryKey(new PersonPk(personId, "value" + personId));
}
private LicenseLocal createLicense(final int licenseId) throws CreateException {
final LicenseLocal license = licenseLocalHome.create(new LicensePk(licenseId, "value" + licenseId));
return license;
}