com.vaadin.flow.server.startup.
Class DefaultApplicationConfigurationFactory
All Implemented Interfaces:
Direct Known Subclasses:
Default implementation of ApplicationConfigurationFactory
.
Since:
Author:
Vaadin Ltd
See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
-
Field Summary
Fields inherited from class com.vaadin.flow.server.startup.AbstractConfigurationFactory
DEV_FOLDER_MISSING_MESSAGE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate
(VaadinContext context) Creates a new instance of
ApplicationConfiguration
for the givencontext
.doCreate
(VaadinContext context, Map<String, String> properties) Creates application configuration instance based on provided data.
protected String
getTokenFileFromClassloader
(VaadinContext context) Gets token file from the classpath using the provided
context
.Methods inherited from class com.vaadin.flow.server.startup.AbstractConfigurationFactory
getConfigParametersUsingTokenData, getTokenFileContent, setDevModePropertiesUsingTokenData, verifyFolderExists
-
Constructor Details
-
DefaultApplicationConfigurationFactory
public DefaultApplicationConfigurationFactory()
-
-
Method Details
-
create
Description copied from interface:
ApplicationConfigurationFactory
Creates a new instance of
ApplicationConfiguration
for the givencontext
.Specified by:
create
in interfaceApplicationConfigurationFactory
Parameters:
context
- the context to create a configuration forReturns:
the configuration created based on the
context
-
doCreate
protected DefaultApplicationConfigurationFactory.ApplicationConfigurationImpl doCreate(VaadinContext context, Map<String, String> properties) Creates application configuration instance based on provided data.
Parameters:
context
- the Vaadin context, notnull
properties
- the context parameters, notnull
Returns:
a new application configuration instance
-
getTokenFileFromClassloader
Gets token file from the classpath using the provided
context
.The
contextClass
may be a class which is defined in the Web Application module/bundle and in this case it may be used to get Web Application resources. Also aVaadinContext
context
instance may be used to get a context of the Web Application (since thecontextClass
may be a class not from Web Application module). In WAR case it doesn't matter which class is used to get the resources (Web Application classes or e.g. "flow-server" classes) since they are loaded by the sameClassLoader
. But in OSGi "flow-server" module classes can't be used to get Web Application resources since they are in different bundles.Parameters:
context
- a VaadinContext which may provide information how to get token file for the web applicationReturns:
the token file content
Throws:
IOException
- if I/O fails during access to the token file
-