Uses of Class
com.vaadin.browserless.BrowserlessApplicationContext.Builder
Packages that use BrowserlessApplicationContext.Builder
-
Uses of BrowserlessApplicationContext.Builder in com.vaadin.browserless
Methods in com.vaadin.browserless that return BrowserlessApplicationContext.BuilderModifier and TypeMethodDescriptionSpringBrowserlessApplicationContext.builder(org.springframework.context.ApplicationContext applicationContext) Creates a Spring-pre-wired builder.BrowserlessApplicationContext.Builder.withCloseHook(Runnable hook) Registers a hook to be invoked when the built application context is closed.BrowserlessApplicationContext.Builder.withComponentTesterPackages(Class<?>... classes) Adds the packages of the given classes to the set of packages to scan forComponentTesterimplementations annotated withTests.BrowserlessApplicationContext.Builder.withComponentTesterPackages(String... packages) Adds packages to scan forComponentTesterimplementations annotated withTests.BrowserlessApplicationContext.Builder.withLookupServices(Class<?>... services) Adds the given Vaadin Lookup service classes to the set configured for this builder.BrowserlessApplicationContext.Builder.withServletFactory(BiFunction<com.vaadin.browserless.internal.Routes, com.vaadin.browserless.internal.UIFactory, VaadinServlet> factory) Sets a custom servlet factory.BrowserlessApplicationContext.Builder.withUIFactory(com.vaadin.browserless.internal.UIFactory uiFactory) Sets the UI factory used when creating UI instances for this application's windows.BrowserlessApplicationContext.Builder.withViewPackages(Class<?>... classes) Adds the packages of the given classes to the set of packages to scan for@Route-annotated views.BrowserlessApplicationContext.Builder.withViewPackages(String... packages) Adds packages to scan for@Route-annotated views.Method parameters in com.vaadin.browserless with type arguments of type BrowserlessApplicationContext.BuilderModifier and TypeMethodDescriptionBrowserlessApplicationContext.create(UnaryOperator<BrowserlessApplicationContext.Builder> configurer) Creates a plain Java application context, applying the given configurer to a fresh builder beforebuildingit.SpringBrowserlessApplicationContext.create(org.springframework.context.ApplicationContext applicationContext, UnaryOperator<BrowserlessApplicationContext.Builder> configurer) Creates an unsecured Spring-integrated application context, applying the given configurer to the pre-wired builder before building it.static <C> SecuredBrowserlessApplicationContext<C> BrowserlessApplicationContext.createSecured(Function<BrowserlessApplicationContext.Builder, SecuredBrowserlessApplicationContext.Builder<C>> configurer) Creates a credential-typed application context.static SecuredBrowserlessApplicationContext<org.springframework.security.core.Authentication> SpringBrowserlessApplicationContext.createSecured(org.springframework.context.ApplicationContext applicationContext, UnaryOperator<BrowserlessApplicationContext.Builder> configurer) Creates a Spring-integrated application context with Spring Security wiring, applying the given configurer to the pre-wired builder. -
Uses of BrowserlessApplicationContext.Builder in com.vaadin.browserless.quarkus
Methods in com.vaadin.browserless.quarkus that return BrowserlessApplicationContext.BuilderModifier and TypeMethodDescriptionQuarkusBrowserlessApplicationContext.builder()Creates a Quarkus-pre-wired builder.Method parameters in com.vaadin.browserless.quarkus with type arguments of type BrowserlessApplicationContext.BuilderModifier and TypeMethodDescriptionQuarkusBrowserlessApplicationContext.create(UnaryOperator<BrowserlessApplicationContext.Builder> configurer) Creates an unsecured Quarkus-integrated application context, applying the given configurer to the pre-wired builder before building it.static SecuredBrowserlessApplicationContext<io.quarkus.security.identity.SecurityIdentity> QuarkusBrowserlessApplicationContext.createSecured(UnaryOperator<BrowserlessApplicationContext.Builder> configurer) Creates a Quarkus-integrated application context with Quarkus Security wiring, applying the given configurer to the pre-wired builder.