01: package org.sakaiproject.search.tool.api;
02:
03: import javax.servlet.http.HttpServletResponse;
04:
05: public interface SherlockSearchBean {
06: /**
07: * Get the site name
08: * @return
09: */
10: String getSiteName();
11:
12: /**
13: * get the search url
14: * @return
15: */
16: String getSearchURL();
17:
18: /**
19: * get the update Url
20: * @return
21: */
22: String getUpdateURL();
23:
24: /**
25: * get the Icon URL
26: * @return
27: */
28: String getUpdateIcon();
29:
30: /**
31: * Stream the Icon
32: *
33: */
34: void sendIcon(HttpServletResponse response);
35:
36: /**
37: * get the name of the system
38: * @return
39: */
40: String getSystemName();
41: }
|