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