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.domain;
05:
06: public class PersistentObj {
07: private Integer id = null;
08: private PersistentObj child = null;
09: private String strFld = null;
10:
11: public PersistentObj getChild() {
12: return child;
13: }
14:
15: public void setChild(PersistentObj child) {
16: this .child = child;
17: }
18:
19: public Integer getId() {
20: return id;
21: }
22:
23: private void setId(Integer id) {
24: this .id = id;
25: }
26:
27: public String getStrFld() {
28: return strFld;
29: }
30:
31: public void setStrFld(String strFld) {
32: this.strFld = strFld;
33: }
34: }
|