This should work to by getting the bean out of the session.
FacesContext context = FacesContext.getCurrentInstance();
HttpServletRequest myRequest = (HttpServletRequest)context.getExternalContext().getRequest();
HttpSession mySession = myRequest.getSession();
EventType event=(EventType)mySession.getAttribute("event");
String trigger=event.triggerID;
Haven't tried it though.