01: package com.completex.objective.persistency.examples.ex003a.domain;
02:
03: import com.completex.objective.persistency.examples.ex003a.cpxpos.CpdProductPO;
04:
05: /**
06: * @author Gennady Krizhevsky
07: */
08: public class CpdProduct extends CpdProductPO {
09: public CpdProduct() {
10: }
11:
12: public CpdProduct(Long productId) {
13: super(productId);
14: }
15: }
|