diff options
author | Aleksi Hietanen <aleksi@vaadin.com> | 2017-04-13 11:48:49 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-05-08 14:46:35 +0300 |
commit | 47f44682e05e9526949bae549800592f82ac1ae7 (patch) | |
tree | 9002d9d34f4ac2f3e2f95e2884cb4c7a64b9877a /shared | |
parent | 8f1b372a72700c50e4e4a1d7835099087467aeeb (diff) | |
download | vaadin-framework-47f44682e05e9526949bae549800592f82ac1ae7.tar.gz vaadin-framework-47f44682e05e9526949bae549800592f82ac1ae7.zip |
Use separate identifier for push connections
Closes #8700
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ApplicationConstants.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java b/shared/src/main/java/com/vaadin/shared/ApplicationConstants.java index 6e79627095..e238dadb1a 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 @@ -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 |