List of usage examples for com.vaadin.server VaadinServlet subclass-usage
From source file org.vaadin.addons.guice.servlet.VGuiceApplicationServlet.java
/**
* A {@link VaadinServlet} which on session initialisation sets the
* {@link UIProvider} to the {@link ScopedUIProvider}
*
* @author Will Temperley
*
From source file org.vaadin.alump.beforeunload.demo.BeforeUnloadDemoServlet.java
/** * Servlet of BeforeUnload Demo */ @WebServlet(value = "/*") @VaadinServletConfiguration(productionMode = false, ui = BeforeUnloadDemoUI.class, widgetset = "org.vaadin.alump.beforeunload.demo.gwt.BeforeUnloadDemoWidgetSet") public class BeforeUnloadDemoServlet extends VaadinServlet {
From source file org.vaadin.alump.vibrate.demo.VibrateServlet.java
@WebServlet(value = "/*", asyncSupported = true) @VaadinServletConfiguration(productionMode = false, ui = VibrateDemoUI.class, widgetset = "org.vaadin.alump.vibrate.demo.gwt.VibrateDemoWidgetSet") public class VibrateServlet extends VaadinServlet { private final VibrateSettings settings = new VibrateSettings();
From source file org.vaadin.cdipushtest.PushCDIServlet.java
/** * Custom servlet is needed for "async=true" and introducing JMS topic. Otherwise * we could deal with the server presented by Vaadin CDI. */ @WebServlet(name = "PushCDIServlet", urlPatterns = { "/*" }, asyncSupported = true) @JMSDestinationDefinition(name = Resources.TOPIC_NAME, interfaceName = "javax.jms.Topic", destinationName = "myTopic")
From source file org.vaadin.spring.boot.config.StaticContentServlet.java
/** * Servlet for serving static Vaadin content. */ public class StaticContentServlet extends VaadinServlet { private static final long serialVersionUID = 5436303277198728952L;
From source file org.vaadin.spring.internal.SpringAwareVaadinServlet.java
/**
* Subclass of the standard {@link com.vaadin.server.VaadinServlet Vaadin servlet} that registers information
* about the current Vaadin {@link com.vaadin.ui.UI} in a thread-local
* for the custom {@link org.vaadin.spring.internal.VaadinUIScope scope}.
*
* @author Petter Holmstrm (petter@vaadin.com)
From source file org.vaadin.spring.servlet.SpringAwareVaadinServlet.java
/**
* Subclass of the standard {@link com.vaadin.server.VaadinServlet Vaadin servlet} that adds a {@link SpringAwareUIProvider} to
* every new Vaadin session.
* <p/>
* If you need a custom Vaadin servlet, you can either extend this servlet directly, or extend another subclass of {@link VaadinServlet}
* and just add the UI provider.
From source file org.vaadin.tori.ToriServlet.java
@SuppressWarnings("serial") public class ToriServlet extends VaadinServlet { public class ToriServletService extends VaadinServletService { public ToriServletService(final ToriServlet servlet, final DeploymentConfiguration deploymentConfiguration)
From source file org.vaadin.webinars.springandvaadin.aspectj.ui.Servlet.java
/** * @author petter@vaadin.com */ @WebServlet(urlPatterns = "/*") @VaadinServletConfiguration(ui = AspectJManagedUI.class, productionMode = false) public class Servlet extends VaadinServlet {
From source file org.vaadin.webinars.springandvaadin.i18n.ui.createTask.CreateTaskServlet.java
/** * @author petter@vaadin.com */ @WebServlet(urlPatterns = "/*") public class CreateTaskServlet extends VaadinServlet {