KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > olstore > session > helper > ItemSpecialHelper


1 package olstore.session.helper;
2
3 import java.rmi.Remote;
4 import javax.activation.DataHandler;
5
6 public interface ItemSpecialHelper extends Remote {
7
8     public String[][] allSpecials() throws java.lang.Exception,
9             java.rmi.RemoteException;
10
11     public String[][] getSpecials(String type) throws java.lang.Exception,
12             java.rmi.RemoteException;
13
14     public String[] getTypes() throws java.lang.Exception,
15             java.rmi.RemoteException;
16
17 }
18
Popular Tags