Search code examples
vaadinvaadin7

Vaadin 7 how to get a page parameters


In my Vaadin 7 application I have a following page by the following url:

http://example.com?wizzard#!products/68691/gps-tracker

How to get this page parameters(in this case - wizzard) from Vaadin 7 application code ?


Solution

  • String value = VaadinService.getCurrent().getCurrentRequest().getParameter("wizzard"); // wizzard present if value is not null