1    package com.mjh.switchrmi.protocol.xmlrpc;
2    
3    import java.util.List;
4    import java.util.Map;
5    
6    public interface IMeerkat
7    {
8        public List getChannels(); //meerkat.getChannels
9    
10       public List getCategories(); // meerkat.getCategories
11   
12       public List getCategoriesBySubstring(String substring); // meerkat.getCategoriesBySubstring
13   
14       public List getChannelsByCategory(int categoryID); // meerkat.getChannelsByCategory
15   
16       public List getChannelsBySubstring(String substring); // meerkat.getChannelsBySubstring
17   
18       public List getItems(Map params); // meerkat.getItems
19   
20       public String getMethodHelpText(String methodName); // system.methodHelp
21   
22       public List getMethodSignature(String methodName); // system.methodSignature
23   }