View Javadoc

1   package com.atlassian.plugin.webresource;
2   
3   import java.util.Map;
4   
5   /**
6    * Interface for plugin resources that serve batches.
7    */
8   public interface BatchResource
9   {
10      String getType();
11  
12      Map<String, String> getParams();
13  }