summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-10-09 08:21:11 +0000
committerVaadin Code Review <review@vaadin.com>2012-10-09 08:21:11 +0000
commit83ab152906251ded4e3c46e9f3e0e5bd790124f4 (patch)
tree7524ac0177a7a392f3e6fe3b7ff54bed6c4edf61 /shared
parentd1962559709a8a5ea0b60ac661bd3a1e0e514be4 (diff)
parenta6adae7e6b154010a34b36a8ddae068a0967d7b8 (diff)
downloadvaadin-framework-83ab152906251ded4e3c46e9f3e0e5bd790124f4.tar.gz
vaadin-framework-83ab152906251ded4e3c46e9f3e0e5bd790124f4.zip
Merge "Rename connector resource -> dependency resource (#9691)"
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";