1 package br.com.ibnetwork.guara.pipeline; 2 3 import java.util.Map; 4 5 /*** 6 * @author <a href="mailto:leandro@ibnetwork.com.br">leandro</a> 7 */ 8 public interface PipelineManager 9 { 10 String ROLE = PipelineManager.class.getName(); 11 12 Map getPipelineMap() 13 throws PipelineException; 14 15 Pipeline getPipeline(String name) 16 throws PipelineException; 17 }