com.vaadin.hilla.engine.
Interface EngineConfiguration
Configuration for the generator engine. It exposes all properties that can be overridden by an alternative implementation. All methods take the default value as a parameter and return the default value if not overridden.
-
Method Summary
Modifier and TypeMethodDescriptiondefault BrowserCallableFinder
getBrowserCallableFinder
(BrowserCallableFinder defaultFinder) Returns the finder for browser-callable classes.
default ClassLoader
getClassLoader
(ClassLoader defaultClassLoader) Returns the class loader to use for loading classes.
-
Method Details
-
getBrowserCallableFinder
Returns the finder for browser-callable classes. This is used when building the application for production.
Parameters:
defaultFinder
- The default finder to use if no custom finder is provided.Returns:
The browser-callable finder to use.
-
getClassLoader
Returns the class loader to use for loading classes. This is used when building the application for production.
Parameters:
defaultClassLoader
- the default class loaderReturns:
the class loader to use
-