diff options
author | Henrik Paul <henrik@vaadin.com> | 2013-09-02 16:48:15 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-09-04 07:25:13 +0000 |
commit | c14334f284c7e7c344b2983726b9242e3ef8562e (patch) | |
tree | 56484511c87300a04286653f1abee7451cac2224 /shared | |
parent | aae2fa65316a228f7e1c17bd976ab0cbcc22543c (diff) | |
download | vaadin-framework-c14334f284c7e7c344b2983726b9242e3ef8562e.tar.gz vaadin-framework-c14334f284c7e7c344b2983726b9242e3ef8562e.zip |
Rewrite client request into JSON (#9269, #11257)
Change-Id: I0001d54f890ad8e5787d1f6c076d1f1d75dd32d2
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ApplicationConstants.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java index d7de435735..1dff1e19cc 100644 --- a/shared/src/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/com/vaadin/shared/ApplicationConstants.java @@ -82,4 +82,18 @@ public class ApplicationConstants implements Serializable { * Name of the parameter used to transmit the CSRF token. */ public static final String CSRF_TOKEN_PARAMETER = "v-csrfToken"; + + /** + * The name of the parameter used to transmit RPC invocations + * + * @since 7.2 + */ + public static final String RPC_INVOCATIONS = "rpc"; + + /** + * The name of the parameter used to transmit the CSRF token + * + * @since 7.2 + */ + public static final String CSRF_TOKEN = "csrfToken"; } |