home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / JAVA Utilities / JProxy 1.1.0 / SAMPLES.JAR / com / jproxy / samples / interfaces / ITest.java < prev   
Encoding:
Java Source  |  2003-04-29  |  236 b   |  14 lines

  1. package com.jproxy.samples.interfaces;
  2.  
  3. import java.rmi.RemoteException;
  4.  
  5.  
  6. public interface ITest
  7. {
  8.     public long getServerTime()
  9.         throws RemoteException;
  10.  
  11.     public byte[] echoBytes(byte[] bytes)
  12.         throws RemoteException;
  13. }
  14.