diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-27 16:14:07 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-28 14:14:33 +0300 |
commit | af8fb8ddd2ab54c08a8ac2c120a8d357c98057ec (patch) | |
tree | c32c0abdadecc7d2af43abdb03cf907feb043af2 /uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java | |
parent | 01ff5a924b8fdeeda8cbd21973fc1ecd206ef043 (diff) | |
download | vaadin-framework-af8fb8ddd2ab54c08a8ac2c120a8d357c98057ec.tar.gz vaadin-framework-af8fb8ddd2ab54c08a8ac2c120a8d357c98057ec.zip |
Rename VaadinSession -> VaadinServiceSession (#9733)
Change-Id: I4472cebf2f9f4cf3e0dea31a0dda8dc892323c5c
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java b/uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java index 9524a41cd8..4d4d96a465 100644 --- a/uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java +++ b/uitest/src/com/vaadin/tests/components/ui/LazyInitUIs.java @@ -5,7 +5,7 @@ import com.vaadin.server.UIClassSelectionEvent; import com.vaadin.server.UICreateEvent; import com.vaadin.server.UIProviderEvent; import com.vaadin.server.VaadinRequest; -import com.vaadin.server.VaadinSession; +import com.vaadin.server.VaadinServiceSession; import com.vaadin.shared.ui.label.ContentMode; import com.vaadin.tests.components.AbstractTestUIProvider; import com.vaadin.ui.Label; @@ -54,14 +54,16 @@ public class LazyInitUIs extends AbstractTestUIProvider { addComponent(getRequestInfo("NormalUI", request)); Link lazyCreateLink = new Link("Open lazyCreate UI", - new ExternalResource(VaadinSession.getCurrent() - .getURL() + "?lazyCreate#lazyCreate")); + new ExternalResource(VaadinServiceSession + .getCurrent().getURL() + + "?lazyCreate#lazyCreate")); lazyCreateLink.setTargetName("_blank"); addComponent(lazyCreateLink); Link lazyInitLink = new Link("Open eagerInit UI", - new ExternalResource(VaadinSession.getCurrent() - .getURL() + "?eagerInit#eagerInit")); + new ExternalResource(VaadinServiceSession + .getCurrent().getURL() + + "?eagerInit#eagerInit")); lazyInitLink.setTargetName("_blank"); addComponent(lazyInitLink); } |