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
14
15
16
17 class ContextBatchDownloadableResource extends AbstractBatchDownloadableResource
18 {
19 ContextBatchDownloadableResource(final String type, final Map<String, String> params,
20 final Iterable<DownloadableResource> resources,
21 final CacheHandle cacher)
22 {
23 super(type, params, resources, cacher);
24 }
25
26 @Override
27 public String toString()
28 {
29 return "[Context Batch type=" + getType() + " params=" + getParams() + "]";
30 }
31 }