blob: 2104ad4b8753cdc3ce42a639add7d1d6ecde2516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.server;
import com.vaadin.Application;
import com.vaadin.shared.communication.URLReference;
import com.vaadin.terminal.ApplicationResource;
import com.vaadin.terminal.ExternalResource;
import com.vaadin.terminal.Resource;
import com.vaadin.terminal.ThemeResource;
public class ResourceReference extends URLReference {
private Resource resource;
public ResourceReference(Resource resource) {
this.resource = resource;
}
public Resource getResource() {
return resource;
}
@Override
public String getURL() {
if (resource instanceof ExternalResource) {
return ((ExternalResource) resource).getURL();
} else if (resource instanceof ApplicationResource) {
final ApplicationResource r = (ApplicationResource) resource;
final Application a = r.getApplication();
if (a == null) {
throw new RuntimeException(
"An ApplicationResource ("
+ r.getClass().getName()
+ " must be attached to an application when it is sent to the client.");
}
final String uri = a.getRelativeLocation(r);
return uri;
} else if (resource instanceof ThemeResource) {
final String uri = "theme://"
+ ((ThemeResource) resource).getResourceId();
return uri;
} else {
throw new RuntimeException(getClass().getSimpleName()
+ " does not support resources of type: "
+ resource.getClass().getName());
}
}
public static ResourceReference create(Resource resource) {
if (resource == null) {
return null;
} else {
return new ResourceReference(resource);
}
}
public static Resource getResource(URLReference reference) {
if (reference == null) {
return null;
}
assert reference instanceof ResourceReference;
return ((ResourceReference) reference).getResource();
}
}
|