1   package com.atlassian.plugin.webresource;
2   
3   import java.util.List;
4   import java.util.Arrays;
5   
6   /**
7    *
8    */
9   class TestResourceBatchingConfiguration implements ResourceBatchingConfiguration
10  {
11      public boolean enabled = false;
12  
13      public boolean isSuperBatchingEnabled()
14      {
15          return enabled;
16      }
17  
18      public List<String> getSuperBatchModuleCompleteKeys()
19      {
20          return Arrays.asList(
21                  "test.atlassian:superbatch",
22                  "test.atlassian:superbatch2",
23                  "test.atlassian:missing-plugin"
24          );
25      }
26  }