View Javadoc

1   /*
2    *  DISCLAIMER
3    */
4   package org.flowfuse.base.services.filter;
5   
6   import java.util.List;
7   import java.util.Map;
8   
9   /***
10   * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
11   *         Flowfuse.org
12   * @version $Id: FilterManagementService.java,v 1.1 2006/01/15 20:01:28 skleinei Exp $
13   */
14  public interface FilterManagementService {
15  
16    /* RCS ID */
17    public final static String rcsid = "$Id: FilterManagementService.java,v 1.1 2006/01/15 20:01:28 skleinei Exp $";
18  
19    public Map getConfiguredFilters();
20  
21  }
22  
23  /* EOF */