Package com.vaadin.flow.server.startup
Interface AppShellPredicate
-
- All Known Implementing Classes:
LookupInitializer.AppShellPredicateImpl
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface AppShellPredicate
Checks whether the provided class is anAppShellConfiguratoreligible for the web application.- Since:
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisShell(Class<?> clz)Checks whether the class is anAppShellConfiguratorclass inside the web application.
-
-
-
Method Detail
-
isShell
boolean isShell(Class<?> clz)
Checks whether the class is anAppShellConfiguratorclass inside the web application.- Parameters:
clz- the class to check , notnull- Returns:
- true if the class extends
AppShellConfigurator.
-
-