public class BackendBean {
public List<HObject> getObjects() {
EventsService eventsService = SpringUtils.lookupBean("eventsService");
GetObjectsRequest request = new GetObjectsRequest();
try {
return eventsService.process(request).getObjects();
} catch (ServiceException e) {
throw new RuntimeException(e);
}