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 an AppShellConfigurator eligible for the web application.

    Since:

    Author:

    Vaadin Ltd

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      boolean isShell(Class<?> clz)

      Checks whether the class is an AppShellConfigurator class inside the web application.

    • Method Detail

      • isShell

        boolean isShell(Class<?> clz)

        Checks whether the class is an AppShellConfigurator class inside the web application.

        Parameters:

        clz - the class to check , not null

        Returns:

        true if the class extends AppShellConfigurator.