01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.spring.bean;
05:
06: public interface IHibernateBean {
07: public void sharePersistentObj();
08:
09: public void shareDetachedObj();
10:
11: public void shareObjWithLazyChild();
12:
13: public void shareLazyObj();
14:
15: public void associateSharedObj();
16:
17: public Integer getSharedId();
18:
19: public String getSharedFld();
20: }
|