KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > rpc > IF3SOAP


1
2 package test.rpc;
3
4 import java.util.Calendar JavaDoc;
5
6 public interface IF3SOAP extends IF2SOAP
7 {
8     public IF1[] getBeansByCategory(String JavaDoc ifId, String JavaDoc category)
9         throws Exception JavaDoc;
10
11     public IF1[] getBeansByCategory(String JavaDoc ifId, String JavaDoc category, String JavaDoc[] filter)
12         throws Exception JavaDoc;
13
14     public IF1[] getBeansByDate(String JavaDoc ifId, Calendar JavaDoc[] dates)
15         throws Exception JavaDoc;
16
17     public IF1[] getBeansByDate(String JavaDoc ifId, Calendar JavaDoc[] dates, String JavaDoc[] filter)
18         throws Exception JavaDoc;
19
20     public IF1[] getBeansByExpression(String JavaDoc ifId, int expType, String JavaDoc expression)
21         throws Exception JavaDoc;
22
23     public IF1[] getBeansByExpression(String JavaDoc ifId, int expType, String JavaDoc expression, String JavaDoc[] filter)
24         throws Exception JavaDoc;
25 }
26
27
Popular Tags