01: package com.completex.objective.persistency.examples.ex003a.domain;
02:
03: import com.completex.objective.components.persistency.OdalRuntimePersistencyException;
04: import com.completex.objective.components.persistency.type.TracingCollection;
05: import com.completex.objective.persistency.examples.ex003a.cpxpos.CpxCustomerPO;
06:
07: import java.sql.SQLException;
08: import java.util.Collection;
09:
10: /**
11: * @author Gennady Krizhevsky
12: */
13: public class CpxCustomer extends CpxCustomerPO {
14: public CpxCustomer() {
15: }
16:
17: public CpxCustomer(Long customerId) {
18: super(customerId);
19: }
20:
21: }
|