Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }