diff options
author | Aleksi Hietanen <aleksi@vaadin.com> | 2017-04-13 11:48:49 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2017-04-13 10:48:49 +0200 |
commit | a4a4d9e064f06ad4cdc2801db75955872a3acf45 (patch) | |
tree | 016e116ea0a25226617a707112c446d7881094e0 /shared/src | |
parent | dd1d288d5fe7b3a1ee3db93afccacae72bc7408c (diff) | |
download | vaadin-framework-a4a4d9e064f06ad4cdc2801db75955872a3acf45.tar.gz vaadin-framework-a4a4d9e064f06ad4cdc2801db75955872a3acf45.zip |
Use separate identifier for push connections8.1.0.alpha5
Closes #8700
Diffstat (limited to 'shared/src')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ApplicationConstants.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java b/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java index 3a2b8b2b13..423e89645a 100644 --- a/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java @@ -55,6 +55,8 @@ public class ApplicationConstants implements Serializable { public static final String UIDL_SECURITY_TOKEN_ID = "Vaadin-Security-Key"; + public static final String UIDL_PUSH_ID = "Vaadin-Push-ID"; + @Deprecated public static final String UPDATE_VARIABLE_INTERFACE = "v"; @Deprecated @@ -80,7 +82,7 @@ public class ApplicationConstants implements Serializable { /** * Configuration parameter giving the (in some cases relative) URL to the * web application context root. - * + * * @since 8.0.3 */ public static final String CONTEXT_ROOT_URL = "contextRootUrl"; @@ -123,6 +125,11 @@ public class ApplicationConstants implements Serializable { public static final String CSRF_TOKEN_PARAMETER = "v-csrfToken"; /** + * Name of the parameter used to transmit the push connection identifier. + */ + public static final String PUSH_ID_PARAMETER = "v-pushId"; + + /** * The name of the parameter used to transmit RPC invocations * * @since 7.2 |