1 package com.atlassian.plugin.webresource;
2
3 import com.atlassian.plugin.servlet.DownloadableResource;
4 import com.atlassian.plugin.webresource.cache.CacheHandle;
5
6 import java.util.Map;
7
8
9
10
11
12
13 public class BatchDownloadableResource extends AbstractBatchDownloadableResource
14 {
15 private final String moduleCompleteKey;
16
17
18
19
20
21
22
23
24 BatchDownloadableResource(final String moduleCompleteKey, final String type, final Map<String, String> params,
25 final Iterable<DownloadableResource> resources,
26 final CacheHandle cacher)
27 {
28 super(type, params, resources, cacher);
29 this.moduleCompleteKey = moduleCompleteKey;
30 }
31
32 public String getModuleCompleteKey() {
33 return moduleCompleteKey;
34 }
35
36 @Override
37 public String toString()
38 {
39 return "[moduleCompleteKey=" + moduleCompleteKey + ", type=" + getType() + ", params=" + getParams() + "]";
40 }
41 }