blob: 1a6c138f367c1e9384b094f0d5a75cbd2ba76e0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.vaadin.tests;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.server.VaadinServlet;
import com.vaadin.tests.integration.ServletIntegrationWebsocketUI;
import javax.servlet.annotation.WebInitParam;
import javax.servlet.annotation.WebServlet;
/**
* Created by elmot on 06-02-2017.
*/
@WebServlet(urlPatterns = "/run-jsr356/*", name = "IntegrationUIProvider-Jsr356", asyncSupported = false, initParams = {
@WebInitParam(name = "org.atmosphere.cpr.asyncSupport", value = "org.atmosphere.container.JSR356AsyncSupport")})
@VaadinServletConfiguration(ui = ServletIntegrationWebsocketUI.class, productionMode = false)
public class JSR356Servlet extends VaadinServlet {
}
|