summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/terminal/DefaultRootProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/com/vaadin/terminal/DefaultRootProvider.java')
-rw-r--r--server/src/com/vaadin/terminal/DefaultRootProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/terminal/DefaultRootProvider.java b/server/src/com/vaadin/terminal/DefaultRootProvider.java
index 7e6631be56..b201be513d 100644
--- a/server/src/com/vaadin/terminal/DefaultRootProvider.java
+++ b/server/src/com/vaadin/terminal/DefaultRootProvider.java
@@ -23,10 +23,10 @@ import com.vaadin.ui.UI;
public class DefaultRootProvider extends AbstractRootProvider {
@Override
- public Class<? extends UI> getRootClass(Application application,
+ public Class<? extends UI> getUIClass(Application application,
WrappedRequest request) throws UIRequiresMoreInformationException {
Object rootClassNameObj = application
- .getProperty(Application.ROOT_PARAMETER);
+ .getProperty(Application.UI_PARAMETER);
if (rootClassNameObj instanceof String) {
String rootClassName = rootClassNameObj.toString();