blob: 9ca79b31a890cf887a0a54250b73d8a4b019ab87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.vaadin.tests;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.server.VaadinServlet;
import com.vaadin.tests.integration.ServletIntegrationUI;
import javax.servlet.annotation.WebInitParam;
import javax.servlet.annotation.WebServlet;
@WebServlet(urlPatterns = "/*" ,name = "IntegrationTestUIProvider", asyncSupported = true, initParams = {
@WebInitParam(name = "UIProvider", value = "com.vaadin.tests.IntegrationTestUIProvider")})
@VaadinServletConfiguration(ui = ServletIntegrationUI.class, productionMode = false)
public class ServerIntegrationTestServlet extends VaadinServlet {
}
|