com.vaadin.server.VaadinServlet.URL_PARAMETER_THEME

Here are the examples of the java api com.vaadin.server.VaadinServlet.URL_PARAMETER_THEME taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

18 Source : VertxBootstrapHandler.java
with MIT License
from mcollovati

@Override
public String getThemeName(BootstrapContext context) {
    String themeName = context.getRequest().getParameter(VaadinServlet.URL_PARAMETER_THEME);
    if (themeName == null) {
        themeName = super.getThemeName(context);
    }
    return themeName;
}