/**
* Checks whether path info in requests to the server-side service should be
- * in a request parameter (named
- * {@value ApplicationConstants#V_RESOURCE_PATH}) or appended to the end of
- * the service URL.
+ * in a request parameter (named <code>v-resourcePath</code>) or appended to
+ * the end of the service URL.
*
* @see #getServiceUrl()
*
/**
* Gets the URL to the server-side VaadinService. If
* {@link #useServiceUrlPathParam()} return <code>true</code>, the requested
- * path info should be in the {@value ApplicationConstants#V_RESOURCE_PATH}
- * query parameter; else the path info should be appended to the end of the
- * URL.
+ * path info should be in the <code>v-resourcePath</code> query parameter;
+ * else the path info should be appended to the end of the URL.
*
* @see #useServiceUrlPathParam()
*
static final String URL_PARAMETER_THEME = "theme";
static final String SERVLET_PARAMETER_PRODUCTION_MODE = "productionMode";
+ // Javadocs for VaadinService should be updated if this value is changed
static final String SERVLET_PARAMETER_DISABLE_XSRF_PROTECTION = "disable-xsrf-protection";
static final String SERVLET_PARAMETER_RESOURCE_CACHE_TIME = "resourceCacheTime";
static final String SERVLET_PARAMETER_HEARTBEAT_INTERVAL = "heartbeatInterval";
* This protection is enabled by default, but it might need to be disabled
* to allow a certain type of testing. For these cases, the check can be
* disabled by setting the init parameter
- * {@value Constants#SERVLET_PARAMETER_DISABLE_XSRF_PROTECTION} to
- * <code>true</code>.
+ * <code>disable-xsrf-protection</code> to <code>true</code>.
*
* @see DeploymentConfiguration#isXsrfProtectionEnabled()
*
* The name of the parameter that is by default used in e.g. web.xml to
* define the name of the default {@link UI} class.
*/
+ // javadoc in UI should be updated if this value is changed
public static final String UI_PARAMETER = "UI";
private static final Method BOOTSTRAP_FRAGMENT_METHOD = ReflectTools
* browser window which points to e.g. {@link VaadinServlet}, all
* {@link UIProvider}s registered to the current {@link VaadinSession} are
* queried for the UI class that should be used. The selection is by defaylt
- * based on the {@value VaadinSession#UI_PARAMETER} parameter from web.xml.
+ * based on the <code>UI</code> init parameter from web.xml.
* </p>
* <p>
* After a UI has been created by the application, it is initialized using
public static final String SERVICE_URL_PATH_AS_PARAMETER = "usePathParameter";
+ // Javadocs in ApplicationConfiguration should be updated if this is changed
public static final String V_RESOURCE_PATH = "v-resourcePath";
@Deprecated