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