1 package org.enhydra.pim.business.base; 2 3 import java.math.BigDecimal ; 4 import org.enhydra.pim.business.api.*; 5 6 11 public class ContactType extends BasePimImpl implements ContactTypeI, java.io.Serializable { 12 13 private String contact_type = null; 14 15 18 public ContactType(String contact_type) { 19 super(null); 20 this.contact_type = contact_type; 21 } 22 23 27 public ContactType(BigDecimal handle, String contact_type) { 28 super(handle); 29 this.contact_type = contact_type; 30 } 31 32 public void clean() { 33 super.clean(); 34 this.contact_type = null; 35 } 36 37 43 public void setContact_type(String _contact_type) { 44 contact_type = _contact_type; 45 } 46 47 52 public String getContact_type() { 53 return contact_type; 54 } 55 } | Popular Tags |