summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index a21a0d0b35..7b24ef732c 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -20,13 +20,13 @@ public class ApplicationConstants {
// This indicates the whole page is generated by us (not embedded)
public static final String GENERATED_BODY_CLASSNAME = "v-generated-body";
- public static final String APP_REQUEST_PATH = "APP";
+ public static final String APP_PATH = "APP";
- public static final String UIDL_REQUEST_PATH = "UIDL/";
+ public static final String UIDL_PATH = "UIDL";
- public static final String HEARTBEAT_REQUEST_PATH = "HEARTBEAT/";
+ public static final String HEARTBEAT_PATH = "HEARTBEAT";
- public static final String PUBLISHED_FILE_PATH = APP_REQUEST_PATH + '/'
+ public static final String PUBLISHED_FILE_PATH = APP_PATH + '/'
+ "PUBLISHED";
public static final String APP_PROTOCOL_PREFIX = "app://";