Package com.vaadin.server
Class AbstractDeploymentConfiguration
- java.lang.Object
-
- com.vaadin.server.AbstractDeploymentConfiguration
-
- All Implemented Interfaces:
DeploymentConfiguration
,Serializable
- Direct Known Subclasses:
DefaultDeploymentConfiguration
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:
- 7.4
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.server.DeploymentConfiguration
DeploymentConfiguration.LegacyProperyToStringMode
-
-
Constructor Summary
Constructors Constructor Description AbstractDeploymentConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassLoaderName()
Gets class loader configuration option value.String
getResourcesPath()
Gets resources path configuration option value.String
getUIClassName()
Gets UI class configuration option value.String
getUIProviderClassName()
Gets UI provider class configuration option value.String
getWidgetset(String defaultValue)
Gets Widgetset 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.server.DeploymentConfiguration
getApplicationOrSystemProperty, getHeartbeatInterval, getInitParameters, getLegacyPropertyToStringMode, getPushMode, getResourceCacheTime, isCloseIdleSessions, isProductionMode, isSendUrlsAsParameters, isSyncIdCheckEnabled, isXsrfProtectionEnabled
-
-
-
-
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
-
getUIProviderClassName
public String getUIProviderClassName()
Description copied from interface:DeploymentConfiguration
Gets UI provider class configuration option value.- Specified by:
getUIProviderClassName
in interfaceDeploymentConfiguration
- Returns:
- UI class name
-
getWidgetset
public String getWidgetset(String defaultValue)
Description copied from interface:DeploymentConfiguration
Gets Widgetset configuration option value.defaultValue
is returned if widgetset parameter is not configured.- Specified by:
getWidgetset
in interfaceDeploymentConfiguration
- Returns:
- UI class name
-
getResourcesPath
public String getResourcesPath()
Description copied from interface:DeploymentConfiguration
Gets resources path configuration option value.- Specified by:
getResourcesPath
in interfaceDeploymentConfiguration
-
getClassLoaderName
public String getClassLoaderName()
Description copied from interface:DeploymentConfiguration
Gets class loader configuration option value.- Specified by:
getClassLoaderName
in interfaceDeploymentConfiguration
-
-