01: package com.completex.objective.persistency.examples.ex003a.domain;
02:
03: import com.completex.objective.persistency.examples.ex003a.pos.PoliceCarPO;
04:
05: /**
06: * @author Gennady Krizhevsky
07: */
08: public class PoliceCar extends PoliceCarPO {
09:
10: public static final String TYPE = "policeCar";
11:
12: public PoliceCar() {
13: }
14:
15: public PoliceCar(Long productId) {
16: super(productId);
17: }
18: }
|