com.vaadin.flow.server.
Class DeploymentConfigurationFactory
- java.lang.Object
-
- com.vaadin.flow.server.DeploymentConfigurationFactory
-
All Implemented Interfaces:
public final class DeploymentConfigurationFactory extends Object implements Serializable
Creates
DeploymentConfiguration
filled with all parameters specified by the framework users.Since:
1.2
See Also:
-
-
Field Summary
Fields Modifier and Type Field and Description static String
DEV_FOLDER_MISSING_MESSAGE
static String
ERROR_DEV_MODE_NO_FILES
static Object
FALLBACK_CHUNK
-
Method Summary
All Methods Modifier and Type Method and Description static DeploymentConfiguration
createDeploymentConfiguration(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig)
Creates a
DeploymentConfiguration
instance that is filled with all parameters, specified for the current app.protected static Properties
createInitParameters(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig)
Generate Property containing parameters for with all parameters contained in current application.
static DeploymentConfiguration
createPropertyDeploymentConfiguration(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig)
Creates a
DeploymentConfiguration
instance that has all parameters, specified for the current app without doing checks so property states and only returns default.
-
-
-
Field Detail
-
FALLBACK_CHUNK
public static final Object FALLBACK_CHUNK
-
ERROR_DEV_MODE_NO_FILES
public static final String ERROR_DEV_MODE_NO_FILES
See Also:
-
DEV_FOLDER_MISSING_MESSAGE
public static final String DEV_FOLDER_MISSING_MESSAGE
See Also:
-
-
Method Detail
-
createDeploymentConfiguration
public static DeploymentConfiguration createDeploymentConfiguration(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig) throws VaadinConfigurationException
Creates a
DeploymentConfiguration
instance that is filled with all parameters, specified for the current app.Parameters:
systemPropertyBaseClass
- the class to look for properties defined with annotationsvaadinConfig
- the config to get the rest of the properties fromReturns:
DeploymentConfiguration
instanceThrows:
VaadinConfigurationException
- thrown if property construction fails
-
createPropertyDeploymentConfiguration
public static DeploymentConfiguration createPropertyDeploymentConfiguration(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig) throws VaadinConfigurationException
Creates a
DeploymentConfiguration
instance that has all parameters, specified for the current app without doing checks so property states and only returns default.Parameters:
systemPropertyBaseClass
- the class to look for properties defined with annotationsvaadinConfig
- the config to get the rest of the properties fromReturns:
DeploymentConfiguration
instanceThrows:
VaadinConfigurationException
- thrown if property construction fails
-
createInitParameters
protected static Properties createInitParameters(Class<?> systemPropertyBaseClass, VaadinConfig vaadinConfig) throws VaadinConfigurationException
Generate Property containing parameters for with all parameters contained in current application.
Parameters:
systemPropertyBaseClass
- the class to look for properties defined with annotationsvaadinConfig
- the config to get the rest of the properties fromReturns:
Properties
instanceThrows:
VaadinConfigurationException
- thrown if property construction fails
-
-