public abstract class VaadinService extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
static String |
ATMOSPHERE_MISSING_ERROR |
static String |
INVALID_ATMOSPHERE_VERSION_WARNING |
static String |
URL_PARAMETER_CLOSE_APPLICATION
Deprecated.
As of 7.0.
|
static String |
URL_PARAMETER_RESTART_APPLICATION
Deprecated.
As of 7.0.
|
Modifier | Constructor and Description |
---|---|
protected |
VaadinService()
Creates a service.
|
|
VaadinService(DeploymentConfiguration deploymentConfiguration)
Creates a new vaadin service based on a deployment configuration.
|
Modifier and Type | Method and Description |
---|---|
Future<Void> |
accessSession(VaadinSession session,
Command command)
Implementation for
VaadinSession.access(Command) . |
Registration |
addServiceDestroyListener(ServiceDestroyListener listener)
Adds a service destroy listener that gets notified when this service is
destroyed.
|
Registration |
addSessionDestroyListener(SessionDestroyListener listener)
Adds a listener that gets notified when a Vaadin service session that has
been initialized for this service is destroyed.
|
Registration |
addSessionInitListener(SessionInitListener listener)
Adds a listener that gets notified when a new Vaadin service session is
initialized for this service.
|
Registration |
addUIInitListener(UIInitListener listener)
Adds a listener that gets notified when a new UI has been initialized.
|
void |
closeSession(VaadinSession session)
Sets the given session to be closed and all its UI state to be discarded
at the end of the current request, or at the end of the next request if
there is no ongoing one.
|
protected abstract VaadinContext |
constructVaadinContext()
Constructs
VaadinContext for this service. |
static String |
createCriticalNotificationJSON(String caption,
String message,
String details,
String url)
Creates a JSON message which, when sent to client as-is, will cause a
critical error to be shown with the given details.
|
static String |
createCriticalNotificationJSON(String caption,
String message,
String details,
String url,
String querySelector)
Creates a JSON message which, when sent to client as-is, will cause a
critical error to be shown with the given details.
|
protected Instantiator |
createInstantiator()
Creates an instantiator to use with this service.
|
protected List<RequestHandler> |
createRequestHandlers()
Called during initialization to add the request handlers for the service.
|
static String |
createSessionExpiredJSON(boolean async)
Creates the JSON to send to the client when the session has expired.
|
static String |
createUINotFoundJSON(boolean async)
Creates the JSON to send to the client when the UI cannot be found.
|
protected VaadinSession |
createVaadinSession(VaadinRequest request)
Creates a new Vaadin session for this service and request.
|
void |
destroy()
Called when the servlet or similar for this service is being destroyed.
|
void |
ensureAccessQueuePurged(VaadinSession session)
Makes sure the pending access queue is purged for the provided session.
|
boolean |
ensurePushAvailable()
Enables push if push support is available and push has not yet been
enabled.
|
UI |
findUI(VaadinRequest request)
Finds the
UI that belongs to the provided request. |
VaadinSession |
findVaadinSession(VaadinRequest request)
Attempts to find a Vaadin service session associated with this request.
|
void |
fireSessionDestroy(VaadinSession vaadinSession)
Handles destruction of the given session.
|
void |
fireUIInitListeners(UI ui)
Fire UI initialization event to all registered
UIInitListener s. |
ClassLoader |
getClassLoader()
Gets the class loader to use for loading classes loaded by name, e.g.
|
VaadinContext |
getContext()
Returns
VaadinContext for this service. |
abstract String |
getContextRootRelativePath(VaadinRequest request)
Returns relative context path for given request.
|
static VaadinService |
getCurrent()
Gets the currently used Vaadin service.
|
static VaadinRequest |
getCurrentRequest()
Gets the currently processed Vaadin request.
|
static VaadinResponse |
getCurrentResponse()
Gets the currently processed Vaadin response.
|
Iterable<DependencyFilter> |
getDependencyFilters()
Gets the filters which all resource dependencies are passed through
before being sent to the client for loading.
|
DeploymentConfiguration |
getDeploymentConfiguration()
Gets the deployment configuration.
|
protected VaadinSession |
getExistingSession(VaadinRequest request,
boolean allowSessionCreation) |
DependencyTreeCache<String> |
getHtmlImportDependencyCache()
Deprecated.
HtmlImports are no longer supported.
|
Instantiator |
getInstantiator()
Gets the instantiator used by this service.
|
abstract String |
getMainDivId(VaadinSession session,
VaadinRequest request)
Creates and returns a unique ID for the DIV where the UI is to be
rendered.
|
abstract String |
getMimeType(String resourceName)
Returns the MIME type of the specified file, or null if the MIME type is
not known.
|
protected abstract PwaRegistry |
getPwaRegistry() |
Iterable<RequestHandler> |
getRequestHandlers()
Returns the request handlers that are registered with this service.
|
abstract URL |
getResource(String url,
WebBrowser browser,
AbstractTheme theme)
Returns a URL to the resource at the given Vaadin URI.
|
abstract InputStream |
getResourceAsStream(String url,
WebBrowser browser,
AbstractTheme theme)
Opens a stream to to the resource at the given Vaadin URI.
|
Router |
getRouter()
Gets the router used for UIs served by this service.
|
protected abstract RouteRegistry |
getRouteRegistry()
Find a route registry to use for this service.
|
abstract String |
getServiceName()
Gets a unique name for this service.
|
protected String |
getSessionAttributeName()
Returns the name used for storing the VaadinSession in the underlying
HTTP session.
|
protected Lock |
getSessionLock(WrappedSession wrappedSession)
Gets the lock instance used to lock the VaadinSession associated with the
given wrapped session.
|
abstract URL |
getStaticResource(String url)
Returns a URL to the static resource at the given URI or null if no file
found.
|
SystemMessages |
getSystemMessages(Locale locale,
VaadinRequest request)
Gets the system message to use for a specific locale.
|
SystemMessagesProvider |
getSystemMessagesProvider()
Gets the system messages provider currently defined for this service.
|
abstract Optional<String> |
getThemedUrl(String url,
WebBrowser browser,
AbstractTheme theme)
Checks if the given URL has a themed version.
|
void |
handleRequest(VaadinRequest request,
VaadinResponse response)
Handles the incoming request and writes the response into the response
object.
|
protected void |
handleSessionExpired(VaadinRequest request,
VaadinResponse response)
Called when the session has expired and the request handling is therefore
aborted.
|
void |
init()
Initializes this service.
|
protected boolean |
isAtmosphereAvailable()
Checks whether Atmosphere is available for use.
|
static boolean |
isCsrfTokenValid(UI ui,
String requestToken)
Verifies that the given CSRF token (synchronizer token pattern) is valid
for the given UI.
|
static boolean |
isOtherSessionLocked(VaadinSession session)
Checks whether there might be some
VaadinSession other than the
provided one for which the current thread holds a lock. |
boolean |
isResourceAvailable(String url,
WebBrowser browser,
AbstractTheme theme)
Checks if a resource is available at the given Vaadin URI.
|
boolean |
isUIActive(UI ui)
Returns whether the given UI is active (the client-side actively
communicates with the server) or whether it can be removed from the
session and eventually collected.
|
protected Optional<Instantiator> |
loadInstantiators()
Loads and initializes instantiators.
|
protected VaadinSession |
loadSession(WrappedSession wrappedSession)
Called when the VaadinSession should be loaded from the underlying HTTP
session.
|
protected Lock |
lockSession(WrappedSession wrappedSession)
Locks the given session for this service instance.
|
void |
modifyBootstrapPage(BootstrapPageResponse response)
Fires the
BootstrapListener.modifyBootstrapPage(BootstrapPageResponse)
event to all registered BootstrapListener . |
protected VaadinSession |
readFromHttpSession(WrappedSession wrappedSession)
Performs the actual read of the VaadinSession from the underlying HTTP
session after sanity checks have been performed.
|
static void |
reinitializeSession(VaadinRequest request)
Discards the current session and creates a new session with the same
contents.
|
protected void |
removeFromHttpSession(WrappedSession wrappedSession)
Performs the actual removal of the VaadinSession from the underlying HTTP
session after sanity checks have been performed.
|
void |
removeSession(WrappedSession wrappedSession)
Called when the VaadinSession should be removed from the underlying HTTP
session.
|
protected abstract boolean |
requestCanCreateSession(VaadinRequest request)
Checks whether it's valid to create a new service session as a result of
the given request.
|
void |
requestEnd(VaadinRequest request,
VaadinResponse response,
VaadinSession session)
Called after the framework has handled a request and the response has
been written.
|
void |
requestStart(VaadinRequest request,
VaadinResponse response)
Called before the framework starts handling a request.
|
abstract String |
resolveResource(String url,
WebBrowser browser)
Resolves the given
url resource to be useful for
getResource(String, WebBrowser, AbstractTheme) and
getResourceAsStream(String, WebBrowser, AbstractTheme) . |
void |
runPendingAccessTasks(VaadinSession session)
Purges the queue of pending access invocations enqueued with
VaadinSession.access(Command) . |
void |
setClassLoader(ClassLoader classLoader)
Sets the class loader to use for loading classes loaded by name, e.g.
|
static void |
setCurrent(VaadinService service)
Sets the given Vaadin service as the current service.
|
void |
setCurrentInstances(VaadinRequest request,
VaadinResponse response)
Sets the this Vaadin service as the current service and also sets the
current Vaadin request and Vaadin response.
|
protected void |
setDefaultClassLoader()
Tries to acquire default class loader and sets it as a class loader for
this
VaadinService if found. |
void |
setSystemMessagesProvider(SystemMessagesProvider systemMessagesProvider)
Sets the system messages provider to use for getting system messages to
display to users of this service.
|
protected void |
storeSession(VaadinSession session,
WrappedSession wrappedSession)
Called when the VaadinSession should be stored.
|
protected void |
unlockSession(WrappedSession wrappedSession,
Lock lock)
Releases the lock for the given session for this service instance.
|
static void |
verifyNoOtherSessionLocked(VaadinSession session)
Checks that another
VaadinSession instance is not locked. |
void |
writeStringResponse(VaadinResponse response,
String contentType,
String responseString)
Writes the given string as a response using the given content type.
|
protected void |
writeToHttpSession(WrappedSession wrappedSession,
VaadinSession session)
Performs the actual write of the VaadinSession to the underlying HTTP
session after sanity checks have been performed.
|
void |
writeUncachedStringResponse(VaadinResponse response,
String contentType,
String responseString)
Writes the given string as a response with headers to prevent caching and
using the given content type.
|
public static final String INVALID_ATMOSPHERE_VERSION_WARNING
public static final String ATMOSPHERE_MISSING_ERROR
@Deprecated public static final String URL_PARAMETER_RESTART_APPLICATION
@Deprecated public static final String URL_PARAMETER_CLOSE_APPLICATION
public VaadinService(DeploymentConfiguration deploymentConfiguration)
deploymentConfiguration
- the deployment configuration for the serviceprotected VaadinService()
setClassLoader(ClassLoader)
or setDefaultClassLoader()
before use. Furthermore getDeploymentConfiguration()
and
getContext()
should be overridden (or otherwise intercepted) not
to return null
.public void init() throws ServiceException
ServiceException
- if a problem occurs when creating the serviceprotected abstract RouteRegistry getRouteRegistry()
null
protected abstract PwaRegistry getPwaRegistry()
public abstract String getContextRootRelativePath(VaadinRequest request)
request
- Request.protected List<RequestHandler> createRequestHandlers() throws ServiceException
ServiceException
- if a problem occurs when creating the request handlersprotected Instantiator createInstantiator() throws ServiceException
A custom Vaadin service implementation can override this method to pick
an instantiator. The method loadInstantiators()
is used to find
a custom instantiator. If there is no one found then the default is used.
You may override this method or loadInstantiators()
in your
custom service.
null
ServiceException
- if there are multiple applicable instantiatorsloadInstantiators()
,
Instantiator
protected Optional<Instantiator> loadInstantiators() throws ServiceException
A custom Vaadin service implementation can override this method to pick
an instantiator in some other way instead of the default implementation
that uses ServiceLoader
.
There may be only one applicable instantiator. Otherwise
ServiceException
will be thrown.
ServiceException
- if there are multiple applicable instantiatorscreateInstantiator()
,
Instantiator
public Instantiator getInstantiator()
null
if this service has
not yet been initializedcreateInstantiator()
,
Instantiator
public ClassLoader getClassLoader()
null
setClassLoader(ClassLoader)
public void setClassLoader(ClassLoader classLoader)
classLoader
- the new class loader to set, not null
.getClassLoader()
public abstract String getMimeType(String resourceName)
resourceName
- a String specifying the name of a fileServletContext#getMimeType(String)
public DeploymentConfiguration getDeploymentConfiguration()
public void setSystemMessagesProvider(SystemMessagesProvider systemMessagesProvider)
systemMessagesProvider
- the system messages provider; null
is not
allowed.getSystemMessagesProvider()
public SystemMessagesProvider getSystemMessagesProvider()
By default, the DefaultSystemMessagesProvider
which always
provides the built-in default SystemMessages
is used.
null
setSystemMessagesProvider(SystemMessagesProvider)
,
SystemMessagesProvider
,
SystemMessages
public SystemMessages getSystemMessages(Locale locale, VaadinRequest request)
locale
- the desired locale for the system messagesrequest
- the request being processedpublic Registration addSessionInitListener(SessionInitListener listener)
Because of the way different service instances share the same session, the listener is not necessarily notified immediately when the session is created but only when the first request for that session is handled by this service.
listener
- the Vaadin service session initialization listenerSessionInitListener
public Registration addUIInitListener(UIInitListener listener)
listener
- the UI initialization listenerUIInitListener
public Registration addSessionDestroyListener(SessionDestroyListener listener)
The session being destroyed is locked and its UIs have been removed when the listeners are called.
listener
- the vaadin service session destroy listeneraddSessionInitListener(SessionInitListener)
public void modifyBootstrapPage(BootstrapPageResponse response)
BootstrapListener.modifyBootstrapPage(BootstrapPageResponse)
event to all registered BootstrapListener
. This is called
internally when the bootstrap page is created, so listeners can intercept
the creation and change the result HTML.response
- The object containing all relevant info needed by listeners to
change the bootstrap page.public void fireSessionDestroy(VaadinSession vaadinSession)
vaadinSession
- The session to destroypublic VaadinSession findVaadinSession(VaadinRequest request) throws SessionExpiredException
Handles locking of the session internally to avoid creation of duplicate sessions by two threads simultaneously.
request
- the request to get a vaadin service session for.null
if no session is found and this is a request for which a new
session shouldn't be created.SessionExpiredException
- if the session has already expiredVaadinSession
protected Lock getSessionLock(WrappedSession wrappedSession)
This method uses the wrapped session instead of VaadinSession to be able to lock even before the VaadinSession has been initialized.
wrappedSession
- The wrapped sessionprotected Lock lockSession(WrappedSession wrappedSession)
VaadinSession.lock()
instead of this method.
Note: The method and its signature has been changed to return lock instance in Flow 2.7.4. If you have overriden this method, you need to update your implementation.
Note: Overriding this method is not recommended, for custom lock storage
strategy override getSessionLock(WrappedSession)
and
setSessionLock(WrappedSession,Lock)
instead.
wrappedSession
- The session to lockIllegalStateException
- if the session is invalidated before it can be lockedprotected void unlockSession(WrappedSession wrappedSession, Lock lock)
VaadinSession.unlock()
instead of this
method.
Note: The method and its signature has been changed to get lock instance as parameter in Flow 2.7.4. If you have overriden this method, you need to update your implementation.
Note: Overriding this method is not recommended, for custom lock storage
strategy override getSessionLock(WrappedSession)
and
setSessionLock(WrappedSession,Lock)
instead.
wrappedSession
- The session to unlocklock
- Lock instance to unlockprotected VaadinSession createVaadinSession(VaadinRequest request)
request
- The request for which to create a VaadinSessionprotected VaadinSession getExistingSession(VaadinRequest request, boolean allowSessionCreation) throws SessionExpiredException
SessionExpiredException
protected abstract boolean requestCanCreateSession(VaadinRequest request)
request
- the requesttrue
if it's valid to create a new service session
for the request; else false
public static VaadinService getCurrent()
ThreadLocal
) and in VaadinSession.access(Command)
and UI.access(Command)
. In other cases, (e.g. from background
threads), the current service is not automatically defined.null
setCurrentInstances(VaadinRequest, VaadinResponse)
public void setCurrentInstances(VaadinRequest request, VaadinResponse response)
The application developer can also use this method to define the current instances outside the normal request handling, e.g. when initiating custom background threads.
request
- the Vaadin request to set as the current request, or
null
if no request should be set.response
- the Vaadin response to set as the current response, or
null
if no response should be set.getCurrent()
,
getCurrentRequest()
,
getCurrentResponse()
public static void setCurrent(VaadinService service)
service
- the service to setpublic static VaadinRequest getCurrentRequest()
null
setCurrentInstances(VaadinRequest, VaadinResponse)
public static VaadinResponse getCurrentResponse()
null
setCurrentInstances(VaadinRequest, VaadinResponse)
public abstract String getServiceName()
public UI findUI(VaadinRequest request)
UI
that belongs to the provided request. This is
generally only supported for UIDL requests as other request types are not
related to any particular UI or have the UI information encoded in a
non-standard way. The returned UI is also set as the current UI (
UI.setCurrent(UI)
).request
- the request for which a UI is desiredpublic static void reinitializeSession(VaadinRequest request)
Please note that this method makes certain assumptions about how data is stored in the underlying session and may thus not be compatible with some environments.
request
- The Vaadin request for which the session should be
reinitializedpublic abstract String getMainDivId(VaadinSession session, VaadinRequest request)
session
- The service session to which the bootstrapped UI will belong.request
- The request for which a div id is neededpublic void closeSession(VaadinSession session)
After the session has been discarded, any UIs that have been left open will give a Session Expired error and a new session will be created for serving new UIs.
session
- the session to closeSystemMessages.getSessionExpiredCaption()
public boolean isUIActive(UI ui)
A UI is active if and only if its isClosing
returns false and getHeartbeatTimeout
is
negative or has not yet expired.
ui
- The UI whose status to checkpublic void requestStart(VaadinRequest request, VaadinResponse response)
request
- The requestresponse
- The responsepublic void requestEnd(VaadinRequest request, VaadinResponse response, VaadinSession session)
request
- The request objectresponse
- The response objectsession
- The session which was used during the request or null if the
request did not use a sessionpublic Iterable<RequestHandler> getRequestHandlers()
createRequestHandlers()
public Iterable<DependencyFilter> getDependencyFilters()
public void handleRequest(VaadinRequest request, VaadinResponse response) throws ServiceException
getRequestHandlers()
for handling the request.
If a session expiration is detected during request handling then each
request handler
has an opportunity to handle the
expiration event if it implements SessionExpiredHandler
. If no
request handler handles session expiration a default expiration message
will be written.
request
- The incoming requestresponse
- The outgoing responseServiceException
- Any exception that occurs during response handling will be
wrapped in a ServiceExceptionpublic void writeStringResponse(VaadinResponse response, String contentType, String responseString) throws IOException
response
- The response referencecontentType
- The content type of the responseresponseString
- The actual responseIOException
- If an error occurred while writing the responsepublic void writeUncachedStringResponse(VaadinResponse response, String contentType, String responseString) throws IOException
response
- The response referencecontentType
- The content type of the responseresponseString
- The actual responseIOException
- If an error occurred while writing the responseprotected void handleSessionExpired(VaadinRequest request, VaadinResponse response) throws ServiceException
request
- The requestresponse
- The responseServiceException
- Thrown if there was any problem handling the expiration of
the sessionpublic static String createCriticalNotificationJSON(String caption, String message, String details, String url)
caption
- The caption of the error or null to omitmessage
- The error message or null to omitdetails
- Additional error details or null to omiturl
- A url to redirect to. If no other details are given then the
user will be immediately redirected to this URL. Otherwise the
message will be shown and the browser will redirect to the
given URL only after the user acknowledges the message. If
null then the browser will refresh the current page.public static String createCriticalNotificationJSON(String caption, String message, String details, String url, String querySelector)
caption
- The caption of the error or null to omitmessage
- The error message or null to omitdetails
- Additional error details or null to omiturl
- A url to redirect to. If no other details are given then the
user will be immediately redirected to this URL. Otherwise the
message will be shown and the browser will redirect to the
given URL only after the user acknowledges the message. If
null then the browser will refresh the current page.querySelector
- Query selector to find the element under which the error will
be added . If element is not found or the selector is
null
, body will be usedpublic static String createSessionExpiredJSON(boolean async)
async
- a boolean indicating whether the message is sent synchronously
or asynchronously.public static String createUINotFoundJSON(boolean async)
async
- a boolean indicating whether the message is sent synchronously
or asynchronously.public boolean ensurePushAvailable()
true
if push can be used; false
if push
is not available.protected boolean isAtmosphereAvailable()
public static void verifyNoOtherSessionLocked(VaadinSession session)
VaadinSession
instance is not locked. This is
internally used by VaadinSession.accessSynchronously(Command)
and
UI.accessSynchronously(Command)
to help avoid causing deadlocks.session
- the session that is being lockedIllegalStateException
- if the current thread holds the lock for another sessionpublic static boolean isOtherSessionLocked(VaadinSession session)
VaadinSession
other than the
provided one for which the current thread holds a lock. This method might
not detect all cases where some other session is locked, but it should
cover the most typical situations.session
- the session that is expected to be lockedtrue
if another session is also locked by the
current thread; false
if no such session was foundpublic static boolean isCsrfTokenValid(UI ui, String requestToken)
This protection is enabled by default, but it might need to be disabled
to allow a certain type of testing. For these cases, the check can be
disabled by setting the init parameter
disable-xsrf-protection
to true
.
ui
- the UI for which the check should be donerequestToken
- the CSRF token provided in the requesttrue
if the token is valid or if the protection is
disabled; false
if protection is enabled and the
token is invalidDeploymentConfiguration.isXsrfProtectionEnabled()
public Future<Void> accessSession(VaadinSession session, Command command)
VaadinSession.access(Command)
. This method is
implemented here instead of in VaadinSession
to enable overriding
the implementation without using a custom subclass of VaadinSession.session
- the vaadin session to accesscommand
- the command to run with the session lockedVaadinSession.access(Command)
public void ensureAccessQueuePurged(VaadinSession session)
session
- the session for which the access queue should be purgedpublic void runPendingAccessTasks(VaadinSession session)
VaadinSession.access(Command)
.
This method is automatically run by the framework at appropriate situations and is not intended to be used by application developers.
session
- the vaadin session to purge the queue forpublic Registration addServiceDestroyListener(ServiceDestroyListener listener)
The listeners may be invoked in a non-deterministic order. In particular, it is not guaranteed that listeners will be invoked in the order they were added.
listener
- the service destroy listener to adddestroy()
,
ServiceDestroyListener
public void destroy()
addServiceDestroyListener(ServiceDestroyListener)
,
Servlet#destroy()
protected void setDefaultClassLoader()
VaadinService
if found. If current security policy disallows
acquiring class loader instance it will log a message and re-throw
SecurityException
SecurityException
- If current security policy forbids acquiring class loaderprotected void storeSession(VaadinSession session, WrappedSession wrappedSession)
By default stores the VaadinSession in the underlying HTTP session.
session
- the VaadinSession to storewrappedSession
- the underlying HTTP sessionprotected void writeToHttpSession(WrappedSession wrappedSession, VaadinSession session)
wrappedSession
- the underlying HTTP sessionsession
- the VaadinSession to storeprotected VaadinSession loadSession(WrappedSession wrappedSession)
wrappedSession
- the underlying HTTP sessionprotected VaadinSession readFromHttpSession(WrappedSession wrappedSession)
Called by loadSession(WrappedSession)
.
wrappedSession
- the underlying HTTP sessionpublic void removeSession(WrappedSession wrappedSession)
wrappedSession
- the underlying HTTP sessionprotected void removeFromHttpSession(WrappedSession wrappedSession)
wrappedSession
- the underlying HTTP sessionprotected String getSessionAttributeName()
public Router getRouter()
null
public void fireUIInitListeners(UI ui)
UIInitListener
s.ui
- the initialized UI
public abstract URL getStaticResource(String url)
url
- the URL for the resourcenull
if
there is no resource at that pathpublic abstract URL getResource(String url, WebBrowser browser, AbstractTheme theme)
url
- the untranslated Vaadin URL for the resourcebrowser
- the web browser to resolve for, relevant for es5 vs es6
resolvingtheme
- the theme to use for translating the URL or null
if no theme is usednull
if
there is no resource at that pathpublic abstract InputStream getResourceAsStream(String url, WebBrowser browser, AbstractTheme theme)
url
- the untranslated Vaadin URL for the resourcebrowser
- the web browser to resolve for, relevant for es5 vs es6
resolvingtheme
- the theme to use for translating the URL or null
if no theme is usednull
if no resource
exists at the specified pathpublic boolean isResourceAvailable(String url, WebBrowser browser, AbstractTheme theme)
url
- the untranslated Vaadin URL for the resourcebrowser
- the web browser to resolve for, relevant for es5 vs es6
resolvingtheme
- the theme to use for translating the URL or null
if no theme is usedtrue
if a resource is found and can be read using
getResourceAsStream(String, WebBrowser, AbstractTheme)
,
false
if it is not foundpublic abstract String resolveResource(String url, WebBrowser browser)
url
resource to be useful for
getResource(String, WebBrowser, AbstractTheme)
and
getResourceAsStream(String, WebBrowser, AbstractTheme)
.url
- the resource to resolve, not null
browser
- the web browser to resolve for, relevant for es5 vs es6
resolvingpublic abstract Optional<String> getThemedUrl(String url, WebBrowser browser, AbstractTheme theme)
url
- the URL to lookupbrowser
- the browser to use for lookuptheme
- the theme to checkpublic DependencyTreeCache<String> getHtmlImportDependencyCache()
protected abstract VaadinContext constructVaadinContext()
VaadinContext
for this service.
This method will be called only once, upon first call to
getContext()
.null
.public VaadinContext getContext()
VaadinContext
for this service.Copyright © 2025. All rights reserved.