I need to get the current servers name an all the other information stored in the URI
.
In Vaadin 8 it was accessible thru the Page
by calling something like this:
URI uri = Page.getCurrent().getLocation();
In Flow the Page
does not contain such information:
An neither does the Router
afaik.
How do I get the URI
?
Thank you in advance.