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