Uses of Class
com.vaadin.server.UIProvider
-
Packages that use UIProvider Package Description com.vaadin.server -
-
Uses of UIProvider in com.vaadin.server
Subclasses of UIProvider in com.vaadin.server Modifier and Type Class Description class
DefaultUIProvider
class
LegacyApplicationUIProvider
Deprecated.As of 7.0.Methods in com.vaadin.server that return UIProvider Modifier and Type Method Description UIProvider
BootstrapResponse. getUIProvider()
Gets the UI provider that is used to provide information about the bootstapped UI.Methods in com.vaadin.server that return types with arguments of type UIProvider Modifier and Type Method Description List<UIProvider>
VaadinSession. getUIProviders()
Gets the UI providers configured for this session.Methods in com.vaadin.server with parameters of type UIProvider Modifier and Type Method Description void
VaadinSession. addUIProvider(UIProvider uiProvider)
Adds a UI provider to this session.void
VaadinSession. addUIProvider(UIProvider uiProvider, int priority)
Adds a UI provider to this session with a persistent priority value.int
VaadinSession. getUIProviderPriority(UIProvider provider)
Get the priority of a specific, already added UI provider.boolean
VaadinService. preserveUIOnRefresh(UIProvider provider, UICreateEvent event)
Check if the given UI should be associated with thewindow.name
so that it can be re-used if the browser window is reloaded.void
VaadinSession. removeUIProvider(UIProvider uiProvider)
Removes a UI provider association from this session.void
VaadinSession. setUIProviderPriority(UIProvider provider, int priority)
Set the priority of a specific, already added UI provider.Constructors in com.vaadin.server with parameters of type UIProvider Constructor Description BootstrapFragmentResponse(BootstrapHandler handler, VaadinRequest request, VaadinSession session, Class<? extends UI> uiClass, List<org.jsoup.nodes.Node> fragmentNodes, UIProvider uiProvider)
Crate a new bootstrap fragment response.BootstrapPageResponse(BootstrapHandler handler, VaadinRequest request, VaadinSession session, Class<? extends UI> uiClass, org.jsoup.nodes.Document document, Map<String,Object> headers, UIProvider uiProvider)
Crate a new bootstrap page response.BootstrapResponse(BootstrapHandler handler, VaadinRequest request, VaadinSession session, Class<? extends UI> uiClass, UIProvider uiProvider)
Creates a new bootstrap event.
-