NotificationDAO {
@Override
public Notification createNotification(Timestamp end, Timestamp period,
int person, Timestamp start, String text) {
Notification notif = new Notification(end, period, person, start, text);
return (Notification) getHibernateTemplate().save(notif);
}