01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.com
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package org.huihoo.jfox.service;
09:
10: import java.io.Serializable;
11:
12: /**
13: * 可以被序列化到硬盘的组件和服务
14: * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
15: */
16:
17: public interface Persistentable extends Serializable {
18:
19: }
|