com.vaadin.flow.server.
Class AbstractDeploymentConfiguration
- java.lang.Object
-
- com.vaadin.flow.server.AbstractDeploymentConfiguration
-
All Implemented Interfaces:
Direct Known Subclasses:
public abstract class AbstractDeploymentConfiguration extends Object implements DeploymentConfiguration
An abstract base class for DeploymentConfiguration implementations. This class provides default implementation for common config properties.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor and Description AbstractDeploymentConfiguration()
-
Method Summary
All Methods Modifier and Type Method and Description String
getClassLoaderName()
Gets class loader configuration option value.
String
getUIClassName()
Gets UI class configuration option value.
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.flow.function.DeploymentConfiguration
areWebJarsEnabled, disableAutomaticServletRegistration, enableDevServer, getApplicationOrSystemProperty, getBooleanProperty, getCompiledWebComponentsPath, getDevelopmentFrontendPrefix, getEs5FrontendPrefix, getEs6FrontendPrefix, getExternalStatsUrl, getHeartbeatInterval, getInitParameters, getMaxMessageSuspendTimeout, getNpmFrontendPrefix, getPolyfills, getPushMode, getPushURL, getStringProperty, getWebComponentDisconnect, isBowerMode, isBrotli, isCloseIdleSessions, isCompatibilityMode, isDevModeLiveReloadEnabled, isEnforcedFieldValidationEnabled, isOldLicenseCheckerEnabled, isPnpmEnabled, isProductionMode, isRequestTiming, isSendUrlsAsParameters, isStatsExternal, isSyncIdCheckEnabled, isXsrfProtectionEnabled, reuseDevServer, useCompiledFrontendResources
-
-
-
-
Method Detail
-
getUIClassName
public String getUIClassName()
Description copied from interface:
DeploymentConfiguration
Gets UI class configuration option value.
Specified by:
getUIClassName
in interfaceDeploymentConfiguration
Returns:
UI class name
-
getClassLoaderName
public String getClassLoaderName()
Description copied from interface:
DeploymentConfiguration
Gets class loader configuration option value.
Specified by:
getClassLoaderName
in interfaceDeploymentConfiguration
Returns:
the configured class loader name
-
-