com.vaadin.flow.server.
Class ServiceContextUriResolver
- java.lang.Object
-
- com.vaadin.flow.shared.VaadinUriResolver
-
- com.vaadin.flow.server.ServiceContextUriResolver
-
All Implemented Interfaces:
public class ServiceContextUriResolver extends VaadinUriResolver implements Serializable
A URI resolver which resolves paths for loading through VaadinService resource methods.
Since:
1.0
See Also:
-
-
Constructor Summary
Constructors Constructor and Description ServiceContextUriResolver()
-
Method Summary
All Methods Modifier and Type Method and Description String
resolveVaadinUri(String uri, String frontendUrl)
Resolves the given uri using the given frontend location, to a path which can be used with
VaadinService.getResource(String, WebBrowser, com.vaadin.flow.theme.AbstractTheme)
andVaadinService.getResourceAsStream(String, WebBrowser, com.vaadin.flow.theme.AbstractTheme)
.-
Methods inherited from class com.vaadin.flow.shared.VaadinUriResolver
resolveVaadinUri
-
-
-
-
Method Detail
-
resolveVaadinUri
public String resolveVaadinUri(String uri, String frontendUrl)
Resolves the given uri using the given frontend location, to a path which can be used with
VaadinService.getResource(String, WebBrowser, com.vaadin.flow.theme.AbstractTheme)
andVaadinService.getResourceAsStream(String, WebBrowser, com.vaadin.flow.theme.AbstractTheme)
.Parameters:
uri
- the URI to resolvefrontendUrl
- the location of thefrontend
folderReturns:
the URI resolved to be relative to the context root
-
-