}
else
{
EventVO event = (EventVO) panel.getEntity();
EventPersonVO eventPerson = new EventPersonVO();
eventPerson.setEvent(event);
eventPerson.setPerson(person);
eventPerson.setInvitationStatus(EventPersonVO.InvitationStatus.NEW);
if (!event.getEventPersons().contains(eventPerson))
event.getEventPersons().add(eventPerson);
}
}