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();
9
10 public List getCategories();
11
12 public List getCategoriesBySubstring(String substring);
13
14 public List getChannelsByCategory(int categoryID);
15
16 public List getChannelsBySubstring(String substring);
17
18 public List getItems(Map params);
19
20 public String getMethodHelpText(String methodName);
21
22 public List getMethodSignature(String methodName);
23 }