aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index 079aa492cc..61b57687bd 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -16,6 +16,7 @@
package com.vaadin.shared;
public class ApplicationConstants {
+
// This indicates the whole page is generated by us (not embedded)
public static final String GENERATED_BODY_CLASSNAME = "v-generated-body";
@@ -25,11 +26,13 @@ public class ApplicationConstants {
public static final String HEARTBEAT_REQUEST_PATH = "HEARTBEAT/";
- public static final String CONNECTOR_RESOURCE_PREFIX = APP_REQUEST_PATH
- + "CONNECTOR";
+ public static final String DEPENDENCY_RESOURCE_PREFIX = APP_REQUEST_PATH
+ + "DEPENDENCY";
public static final String APP_PROTOCOL_PREFIX = "app://";
- public static final String CONNECTOR_PROTOCOL_PREFIX = "connector://";
+ public static final String DEPENDENCY_PROTOCOL_NAME = "dependency";
+ public static final String DEPENDENCY_PROTOCOL_PREFIX = DEPENDENCY_PROTOCOL_NAME
+ + "://";
public static final String UIDL_SECURITY_TOKEN_ID = "Vaadin-Security-Key";
public static final String PARAM_UNLOADBURST = "onunloadburst";