public EventDetails getEventDetail(String eventUid) {
EventsService eventsService = SpringUtils.lookupBean("eventsService");
GetEventDetailsRequest request = new GetEventDetailsRequest();
request.setEventUid(eventUid);
try {
return eventsService.process(request).getEventDetail();
} catch (ServiceException e) {
throw new RuntimeException(e);
}
}
}