1 package br.com.ibnetwork.guara.pull; 2 3 import java.util.List; 4 5 /*** 6 * @author leandro 7 */ 8 public interface PullManager 9 { 10 String ROLE = PullManager.class.getName(); 11 12 String SCOPE_GLOBAL = "global"; 13 14 String SCOPE_REQUEST = "request"; 15 16 String SCOPE_SESSION = "session"; 17 18 List getAllToolHandlers(String scope); 19 20 // Object getTool(String name) 21 // throws Exception; 22 }