diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-10-05 12:02:51 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-10-09 07:30:12 +0000 |
commit | a6adae7e6b154010a34b36a8ddae068a0967d7b8 (patch) | |
tree | 941011fb3baefcdd978a75794a93be1db6208c75 /shared/src/com/vaadin | |
parent | b497019a356105abc6fee9552d1b1b2ebacf78c0 (diff) | |
download | vaadin-framework-a6adae7e6b154010a34b36a8ddae068a0967d7b8.tar.gz vaadin-framework-a6adae7e6b154010a34b36a8ddae068a0967d7b8.zip |
Rename connector resource -> dependency resource (#9691)
Change-Id: If263c3e9eb3d2221ae7a7ca39c5bc05f2c8c14d9
Diffstat (limited to 'shared/src/com/vaadin')
-rw-r--r-- | shared/src/com/vaadin/shared/ApplicationConstants.java | 9 |
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"; |