From 9100cfc70255f95982f230f29ef72dffe46027d5 Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Wed, 5 Jun 2013 15:04:25 +0300 Subject: Do not rely on broken javadoc features for default values (#11970) Change-Id: Ic904a33e31b54da7c1324c70b792c38ee1b56fac --- .../com/vaadin/annotations/VaadinServletConfiguration.java | 11 +++++------ 1 file 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 false. * * @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}. + * com.vaadin.DefaultWidgetSet. * * @return the default widgetset name */ -- cgit v1.2.3