Example usage for com.vaadin.server VaadinRequest getAttribute

List of usage examples for com.vaadin.server VaadinRequest getAttribute

Introduction

In this page you can find the example usage for com.vaadin.server VaadinRequest getAttribute.

Prototype

public Object getAttribute(String name);

Source Link

Document

Gets a request attribute.

Usage

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));
}