Source code: com/clra/rowing/IBoating.java
1 /*
2 * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3 * Distributed under the GPL license. See doc/COPYING.
4 * $RCSfile: IBoating.java,v $
5 * $Date: 2003/02/26 03:38:45 $
6 * $Revision: 1.3 $
7 */
8
9 package com.clra.rowing;
10
11 import java.rmi.RemoteException;
12 import javax.ejb.EJBObject;
13
14 /**
15 * Represents a rowing session.
16 *
17 * @version $Id: IBoating.java,v 1.3 2003/02/26 03:38:45 rphall Exp $
18 * @author <a href="mailto:rphall@pluto.njcc.com">Rick Hall</a>
19 */
20 public interface IBoating extends EJBObject {
21
22 } // IBoating
23
24 /*
25 * $Log: IBoating.java,v $
26 * Revision 1.3 2003/02/26 03:38:45 rphall
27 * Added copyright and GPL license
28 *
29 * Revision 1.2 2002/02/18 18:04:13 rphall
30 * Ran dos2unix to remove ^M (carriage return) from end of lines
31 *
32 * Revision 1.1.1.1 2002/01/03 21:57:28 rphall
33 * Initial load, 5th try, Jan-03-2002 4:57 PM
34 *
35 * Revision 1.1 2001/11/23 18:34:08 rphall
36 * Major revision.
37 *
38 * Revision 1.1 2001/11/20 12:49:01 rphall
39 * Checkpt
40 *
41 */
42