logger.warn("Method not implemented!");
throw new EventManagerException("Method not implemented!");
}
public Event getEvent(String eventId, String userId) throws IllegalArgumentException, EventManagerException {
Event event = null;
if (eventId == null) {
throw new IllegalArgumentException("paramenter eventId must be not null!");
}
List<Event> eventList = null;
try {