summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-11-20 15:24:46 +0200
committerLeif Åstrand <leif@vaadin.com>2012-11-21 10:45:02 +0200
commit62f8f102fab8933f2209b8aa7fe9b56ef3c7fa78 (patch)
treec73c0af1da735c79190a5d54206a92e9b653f692 /shared
parent600ec7d4ffcf019e77752185d0ce3c6ec04c520b (diff)
downloadvaadin-framework-62f8f102fab8933f2209b8aa7fe9b56ef3c7fa78.tar.gz
vaadin-framework-62f8f102fab8933f2209b8aa7fe9b56ef3c7fa78.zip
Rename DependencyResource to PublishedFile (#10224)
Change-Id: I18bd5fbaba7d443cab0626ddd477626995b5f16a
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 a5eb109cb6..61bb33521d 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -26,12 +26,12 @@ public class ApplicationConstants {
public static final String HEARTBEAT_REQUEST_PATH = "HEARTBEAT/";
- public static final String DEPENDENCY_RESOURCE_PREFIX = APP_REQUEST_PATH
- + '/' + "DEPENDENCY";
+ public static final String PUBLISHED_FILE_PATH = APP_REQUEST_PATH
+ + '/' + "PUBLISHED";
public static final String APP_PROTOCOL_PREFIX = "app://";
- public static final String DEPENDENCY_PROTOCOL_NAME = "dependency";
- public static final String DEPENDENCY_PROTOCOL_PREFIX = DEPENDENCY_PROTOCOL_NAME
+ public static final String PUBLISHED_PROTOCOL_NAME = "published";
+ public static final String PUBLISHED_PROTOCOL_PREFIX = PUBLISHED_PROTOCOL_NAME
+ "://";
public static final String UIDL_SECURITY_TOKEN_ID = "Vaadin-Security-Key";