01: package com.completex.objective.persistency.examples.ex003.domain;
02:
03: import com.completex.objective.persistency.examples.ex003.pos.CustomerContactRelPO;
04:
05: /**
06: * @author Gennady Krizhevsky
07: */
08: public class CustomerContactRel extends CustomerContactRelPO {
09:
10: public static final String ADMIN = "admin";
11: public static final String TECH = "tech";
12: public static final String BILL = "bill";
13:
14: public static final String[] SUPPORTED_TYPES = new String[] {
15: ADMIN, TECH, BILL };
16:
17: public CustomerContactRel() {
18: }
19:
20: public CustomerContactRel(Long contactId, String contactType,
21: Long customerId) {
22: super(contactId, contactType, customerId);
23: }
24: }
|