1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.lazyload_proxyfactory_comparison;
17
18 public class UserWithGetObjectWithoutInterface {
19
20 private Integer id;
21 private String name;
22 private Group owner;
23
24 public Integer getId() {
25 return id;
26 }
27
28 public void setId(Integer id) {
29 this.id = id;
30 }
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 public Group getOwner() {
41 return owner;
42 }
43
44 public void setOwner(Group owner) {
45 this.owner = owner;
46 }
47
48 public Object getObject() {
49 return null;
50 }
51 }