1 10 11 package org.mule.umo.routing; 12 13 import org.mule.management.stats.RouterStatistics; 14 15 import java.util.List ; 16 17 24 25 public interface UMORouterCollection 26 { 27 void setRouters(List routers); 28 29 List getRouters(); 30 31 void addRouter(UMORouter router); 32 33 UMORouter removeRouter(UMORouter router); 34 35 UMORouterCatchAllStrategy getCatchAllStrategy(); 36 37 void setCatchAllStrategy(UMORouterCatchAllStrategy catchAllStrategy); 38 39 boolean isMatchAll(); 40 41 RouterStatistics getStatistics(); 42 43 void setStatistics(RouterStatistics stat); 44 45 void setMatchAll(boolean matchAll); 46 } 47 | Popular Tags |