Package com.vaadin.server
Class DependencyFilter.FilterContext
- java.lang.Object
-
- com.vaadin.server.DependencyFilter.FilterContext
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- DependencyFilter
public static class DependencyFilter.FilterContext extends Object implements Serializable
Provides context information for the dependency filter operation.- Since:
- 8.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FilterContext(VaadinSession session)Creates a new context for the given session.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VaadinServicegetService()Gets the related Vaadin service.VaadinSessiongetSession()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
-
-