List of usage examples for com.vaadin.server VaadinRequest getAttribute
public Object getAttribute(String name);
From source file:de.unioninvestment.eai.portal.support.vaadin.CrudVaadinPortletService.java
License:Apache License
public RequestProcessingInfo getCurrentRequestProcessingInfo() { VaadinRequest currentRequest = getCurrentRequest(); return (RequestProcessingInfo) (currentRequest == null ? null : currentRequest.getAttribute(CRUD2GO_PROCESSING_INFO)); }