Uses of Interface
com.vaadin.server.RequestHandler
-
Packages that use RequestHandler Package Description com.vaadin.server com.vaadin.server.communication -
-
Uses of RequestHandler in com.vaadin.server
Subinterfaces of RequestHandler in com.vaadin.server Modifier and Type Interface Description interfaceSessionExpiredHandlerA specialized RequestHandler which is capable of sending session expiration messages to the user.Classes in com.vaadin.server that implement RequestHandler Modifier and Type Class Description classBootstrapHandlerDeprecated.As of 7.0.classConnectorResourceHandlerclassGlobalResourceHandlerARequestHandlerthat takes care ofConnectorResources that should not be served by the connector.classSynchronizedRequestHandlerRequestHandler which takes care of locking and unlocking of the VaadinSession automatically.classUnsupportedBrowserHandlerARequestHandlerthat presents an informative page if the browser in use is unsupported.Methods in com.vaadin.server that return types with arguments of type RequestHandler Modifier and Type Method Description protected List<RequestHandler>VaadinService. createRequestHandlers()Called during initialization to add the request handlers for the service.protected List<RequestHandler>VaadinServletService. createRequestHandlers()List<RequestHandler>ServiceInitEvent. getAddedRequestHandlers()Gets an unmodifiable list of all custom request handlers that have been added for the service.Iterable<RequestHandler>VaadinService. getRequestHandlers()Returns the request handlers that are registered with this service.Collection<RequestHandler>VaadinSession. getRequestHandlers()Gets the request handlers that are registered to the session.Methods in com.vaadin.server with parameters of type RequestHandler Modifier and Type Method Description voidServiceInitEvent. addRequestHandler(RequestHandler requestHandler)Adds a new request handler that will be used by this service.voidVaadinSession. addRequestHandler(RequestHandler handler)Adds a request handler to this session.voidVaadinSession. removeRequestHandler(RequestHandler handler)Removes a request handler from the session. -
Uses of RequestHandler in com.vaadin.server.communication
Classes in com.vaadin.server.communication that implement RequestHandler Modifier and Type Class Description classFileUploadHandlerHandles a file upload request submitted via an Upload component.classHeartbeatHandlerHandles heartbeat requests.classPublishedFileHandlerServes a connector resource from the classpath if the resource has previously been registered by callingLegacyCommunicationManager.registerDependency(String, Class).classPushRequestHandlerHandles requests to open a push (bidirectional) communication channel between the client and the server.classServletBootstrapHandlerclassServletUIInitHandlerclassSessionRequestHandlerHandles a request by passing it to each registeredRequestHandlerin the session in turn until one produces a response.classUidlRequestHandlerProcesses a UIDL request from the client.classUIInitHandlerHandles an initial request from the client to initialize aUI.
-