You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ServerIntegrationTestServlet.java 633B

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