KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > rpc > IF2SOAP


1
2 package test.rpc;
3
4 import java.util.Calendar JavaDoc;
5
6 public interface IF2SOAP
7 {
8     public static final int KEYWORD_EXP = 0;
9     public static final int CONTENT_EXP = 1;
10
11     public IF1 getBeanById(String JavaDoc id)
12         throws Exception JavaDoc;
13
14     public IF1[] getAllBeans()
15         throws Exception JavaDoc;
16
17     public IF1[] getAllBeans(String JavaDoc[] filter)
18         throws Exception JavaDoc;
19
20     public String JavaDoc[] getAllCategories()
21         throws Exception JavaDoc;
22
23     public IF1[] getBeansByCategory(String JavaDoc category)
24         throws Exception JavaDoc;
25
26     public IF1[] getBeansByCategory(String JavaDoc category, String JavaDoc[] filter)
27         throws Exception JavaDoc;
28
29     public IF1[] getBeansByDate(Calendar JavaDoc[] dates)
30         throws Exception JavaDoc;
31
32     public IF1[] getBeansByDate(Calendar JavaDoc[] dates, String JavaDoc[] filter)
33         throws Exception JavaDoc;
34
35     public IF1[] getBeansByExpression(int expType, String JavaDoc expression)
36         throws Exception JavaDoc;
37
38     public IF1[] getBeansByExpression(int expType, String JavaDoc expression, String JavaDoc[] filter)
39         throws Exception JavaDoc;
40
41     public String JavaDoc getXMLForBean(IF1 bean)
42         throws Exception JavaDoc;
43 }
44
45
Popular Tags