KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > proxy > HibernateProxy


1 //$Id: HibernateProxy.java,v 1.3 2004/08/29 07:31:02 oneovthafew Exp $
2
package org.hibernate.proxy;
3
4 import java.io.Serializable JavaDoc;
5
6 /**
7  * Marker interface for entity proxies
8  * @author Gavin King
9  */

10 public interface HibernateProxy extends Serializable JavaDoc {
11     public Object JavaDoc writeReplace();
12     public LazyInitializer getHibernateLazyInitializer();
13 }
14
15
16
17
18
19
20
21
Popular Tags