1 package ejava.examples.txhotel.ejb;
2
3 import javax.ejb.Remote;
4
5 /**
6 * This interface is used in support of testing from remote clients.
7 */
8 @Remote
9 public interface TestUtilRemote {
10 /**
11 * clear all records for the Hotel from the DB.
12 */
13 void reset();
14 }