diff options
author | John Ahlroos <john@vaadin.com> | 2013-09-23 16:51:42 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-09-27 10:33:10 +0000 |
commit | a5795f346e077268eb77edef09d902fba57d5804 (patch) | |
tree | c33ff81d236ff3fce1c0f2c93b61a58dda9be917 /shared | |
parent | 649735f755c51e5c11d5ebe984e7a308fe97552a (diff) | |
download | vaadin-framework-a5795f346e077268eb77edef09d902fba57d5804.tar.gz vaadin-framework-a5795f346e077268eb77edef09d902fba57d5804.zip |
Prefixes GET parameters in Liferay with portlet namespace #12602
Change-Id: I9939a7af83482e136ed0d146accdeec0cd9f10ea
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ApplicationConstants.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java index 104f3047a8..4b5dc9140b 100644 --- a/shared/src/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/com/vaadin/shared/ApplicationConstants.java @@ -49,6 +49,10 @@ public class ApplicationConstants implements Serializable { public static final String SERVICE_URL_PATH_AS_PARAMETER = "usePathParameter"; + // Denotes the namespace which parameters should be prefixed with when + // passed as GET parameters. Currently only used by Liferay. + public static final String SERVICE_URL_PARAMETER_NAMESPACE = "pathParameterNS"; + // Javadocs in ApplicationConfiguration should be updated if this is changed public static final String V_RESOURCE_PATH = "v-resourcePath"; |