01: /*
02: * JFox - The most lightweight Java EE Application Server!
03: * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
04: *
05: * JFox is licenced and re-distributable under GNU LGPL.
06: */
07: package jfox.test.ejb3.lob;
08:
09: /**
10: * @author <a href="mailto:jfox.young@gmail.com">Young Yang</a>
11: */
12: public interface LobberDAO {
13:
14: void insertLobber(Lobber lobber);
15:
16: Lobber getLobber(int id);
17:
18: void updateLobber(Lobber lobber);
19:
20: void deleteLobber(int id);
21: }
|