View Javadoc

1   package com.atlassian.plugin.webresource;
2   
3   import java.util.List;
4   import java.util.Collections;
5   
6   /**
7    * Default configuration for the plugin resource locator, for those applications that do not want to perform
8    * any super-batching.
9    */
10  public class DefaultResourceBatchingConfiguration implements ResourceBatchingConfiguration
11  {
12      public boolean isSuperBatchingEnabled()
13      {
14          return false;
15      }
16  
17      public List<String> getSuperBatchModuleCompleteKeys()
18      {
19          return Collections.emptyList();
20      }
21  }