1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.custom_collection_handling;
17
18 public class Person {
19
20 private Integer id;
21 private String name;
22 private CustomCollection<Contact> contacts;
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 CustomCollection<Contact> getContacts() {
41 return contacts;
42 }
43
44 public void setContacts(CustomCollection<Contact> contacts) {
45 this.contacts = contacts;
46 }
47
48 }