View Javadoc

1   package br.com.ibnetwork.guara.pull;
2   
3   import br.com.ibnetwork.guara.rundata.RunData;
4   
5   
6   /***
7    * @author leandro
8    */
9   public interface ApplicationToolHandler
10  {
11      String getScope();
12      
13      String getName();
14  
15      Object newToolInstance()
16      	throws Exception;
17  
18      Object newToolInstance(RunData data)
19      	throws Exception;
20  }