01: package com.completex.objective.persistency.examples.ex003.domain;
02:
03: import com.completex.objective.persistency.examples.ex003.pos.CustomerPO;
04:
05: import java.util.List;
06:
07: /**
08: * @author Gennady Krizhevsky
09: */
10: public class Customer extends CustomerPO {
11:
12: private List contactRels;
13:
14: public Customer() {
15: }
16:
17: public Customer(Long customerId) {
18: super (customerId);
19: }
20:
21: public List getContactRels() {
22: return contactRels;
23: }
24:
25: public void setContactRels(List contactRels) {
26: this.contactRels = contactRels;
27: }
28:
29: }
|