We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.server.
Class UIProviderEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.server.UIProviderEvent
-
All Implemented Interfaces:
Direct Known Subclasses:
public class UIProviderEvent extends EventObject
Base class for the events that are sent to various methods in UIProvider.
Since:
7.0.0
Author:
Vaadin Ltd
See Also:
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description UIProviderEvent​(VaadinRequest request)
Creates a new UI provider event.
-
Method Summary
All Methods Modifier and Type Method Description VaadinRequest
getRequest()
Gets the request associated with this event.
VaadinService
getService()
Gets the Vaadin service from which the event originates.
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
UIProviderEvent
public UIProviderEvent​(VaadinRequest request)
Creates a new UI provider event.
Parameters:
request
- the request for which the event is UI provider is invoked
-
-
Method Detail
-
getService
public VaadinService getService()
Gets the Vaadin service from which the event originates.
Returns:
the Vaadin service
-
getRequest
public VaadinRequest getRequest()
Gets the request associated with this event.
Returns:
the Vaadin request
-
-