package jp.gr.javacons.industry.seminar.remotetempmonitor; import java.util.Vector; import java.rmi.Remote; import java.rmi.RemoteException; public interface RemoteDataCollector extends Remote { int getChannelSize() throws RemoteException; int getMinimumValue() throws RemoteException; int getMaximumValue() throws RemoteException; Vector getData() throws RemoteException; }