public abstract class Party extends PersistentEntity {
static public Party getParty(Long id) throws HttpException {
Party party = (Party) Hiber.session().get(Party.class, id);
if (party == null) {
throw new NotFoundException("The Party with id " + id
+ " could not be found.");
}
return party;
}