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 DependencyFilter.FilterContext
- java.lang.Object
-
- com.vaadin.server.DependencyFilter.FilterContext
-
All Implemented Interfaces:
Enclosing interface:
public static class DependencyFilter.FilterContext extends Object implements Serializable
Provides context information for the dependency filter operation.
Since:
8.1
See Also:
-
-
Constructor Summary
Constructors Constructor Description FilterContext​(VaadinSession session)
Creates a new context for the given session.
-
Method Summary
All Methods Modifier and Type Method Description VaadinService
getService()
Gets the related Vaadin service.
VaadinSession
getSession()
Gets the related Vaadin session.
-
-
-
Constructor Detail
-
FilterContext
public FilterContext​(VaadinSession session)
Creates a new context for the given session.
Parameters:
session
- the session which is loading dependencies
-
-
Method Detail
-
getSession
public VaadinSession getSession()
Gets the related Vaadin session.
Returns:
the Vaadin session
-
getService
public VaadinService getService()
Gets the related Vaadin service.
Returns:
the Vaadin service
-
-