diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-06-05 15:04:25 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2013-06-05 18:14:36 +0300 |
commit | 9100cfc70255f95982f230f29ef72dffe46027d5 (patch) | |
tree | 45816773c0bb46c927821328b8dd3e9312b3ee89 | |
parent | a9ff7993c2f0e3f3412ef68a236aa2eb02385c64 (diff) | |
download | vaadin-framework-9100cfc70255f95982f230f29ef72dffe46027d5.tar.gz vaadin-framework-9100cfc70255f95982f230f29ef72dffe46027d5.zip |
Do not rely on broken javadoc features for default values (#11970)
Change-Id: Ic904a33e31b54da7c1324c70b792c38ee1b56fac
-rw-r--r-- | server/src/com/vaadin/annotations/VaadinServletConfiguration.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/server/src/com/vaadin/annotations/VaadinServletConfiguration.java b/server/src/com/vaadin/annotations/VaadinServletConfiguration.java index 38e3ff2ef0..e65869c27a 100644 --- a/server/src/com/vaadin/annotations/VaadinServletConfiguration.java +++ b/server/src/com/vaadin/annotations/VaadinServletConfiguration.java @@ -84,8 +84,7 @@ public @interface VaadinServletConfiguration { /** * The time resources can be cached in the browser, in seconds. The default - * value is - * {@value DefaultDeploymentConfiguration#DEFAULT_RESOURCE_CACHE_TIME}. + * value is 3600 seconds, i.e. one hour. * * @return the resource cache time * @@ -96,8 +95,8 @@ public @interface VaadinServletConfiguration { /** * The number of seconds between heartbeat requests of a UI, or a - * non-positive number if heartbeat is disabled. The default value is - * {@value DefaultDeploymentConfiguration#DEFAULT_HEARTBEAT_INTERVAL}. + * non-positive number if heartbeat is disabled. The default value is 300 + * seconds, i.e. 5 minutes. * * @return the time between heartbeats * @@ -109,7 +108,7 @@ public @interface VaadinServletConfiguration { /** * Whether a session should be closed when all its open UIs have been idle * for longer than its configured maximum inactivity time. The default value - * is {@value DefaultDeploymentConfiguration#DEFAULT_CLOSE_IDLE_SESSIONS}. + * is <code>false</code>. * * @return true if UIs and sessions receiving only heartbeat requests are * eventually closed; false if heartbeat requests extend UI and @@ -122,7 +121,7 @@ public @interface VaadinServletConfiguration { /** * The default widgetset to use for the servlet. The default value is - * {@value VaadinServlet#DEFAULT_WIDGETSET}. + * <code>com.vaadin.DefaultWidgetSet</code>. * * @return the default widgetset name */ |