| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.core.person.dto; |
| 17 | |
|
| 18 | |
import java.io.Serializable; |
| 19 | |
import java.util.Date; |
| 20 | |
|
| 21 | |
import javax.xml.bind.annotation.XmlAccessType; |
| 22 | |
import javax.xml.bind.annotation.XmlAccessorType; |
| 23 | |
import javax.xml.bind.annotation.XmlAttribute; |
| 24 | |
import javax.xml.bind.annotation.XmlElement; |
| 25 | |
|
| 26 | |
import org.kuali.student.common.dto.Idable; |
| 27 | |
import org.kuali.student.common.dto.MetaInfo; |
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 33 | 0 | public class PersonEthnicityInfo implements Serializable, Idable { |
| 34 | |
|
| 35 | |
private static final long serialVersionUID = 1L; |
| 36 | |
|
| 37 | |
@XmlElement |
| 38 | |
private String personId; |
| 39 | |
|
| 40 | |
@XmlElement |
| 41 | |
private String ethnicityCode; |
| 42 | |
|
| 43 | |
@XmlElement |
| 44 | |
private String subEthnicityCode; |
| 45 | |
|
| 46 | |
@XmlElement |
| 47 | |
private Date effectiveDate; |
| 48 | |
|
| 49 | |
@XmlElement |
| 50 | |
private Date expirationDate; |
| 51 | |
|
| 52 | |
@XmlElement |
| 53 | |
private MetaInfo metaInfo; |
| 54 | |
|
| 55 | |
@XmlAttribute |
| 56 | |
private String id; |
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
public String getPersonId() { |
| 62 | 0 | return personId; |
| 63 | |
} |
| 64 | |
|
| 65 | |
public void setPersonId(String personId) { |
| 66 | 0 | this.personId = personId; |
| 67 | 0 | } |
| 68 | |
|
| 69 | |
|
| 70 | |
|
| 71 | |
|
| 72 | |
public String getEthnicityCode() { |
| 73 | 0 | return ethnicityCode; |
| 74 | |
} |
| 75 | |
|
| 76 | |
public void setEthnicityCode(String ethnicityCode) { |
| 77 | 0 | this.ethnicityCode = ethnicityCode; |
| 78 | 0 | } |
| 79 | |
|
| 80 | |
|
| 81 | |
|
| 82 | |
|
| 83 | |
public String getSubEthnicityCode() { |
| 84 | 0 | return subEthnicityCode; |
| 85 | |
} |
| 86 | |
|
| 87 | |
public void setSubEthnicityCode(String subEthnicityCode) { |
| 88 | 0 | this.subEthnicityCode = subEthnicityCode; |
| 89 | 0 | } |
| 90 | |
|
| 91 | |
|
| 92 | |
|
| 93 | |
|
| 94 | |
public Date getEffectiveDate() { |
| 95 | 0 | return effectiveDate; |
| 96 | |
} |
| 97 | |
|
| 98 | |
public void setEffectiveDate(Date effectiveDate) { |
| 99 | 0 | this.effectiveDate = effectiveDate; |
| 100 | 0 | } |
| 101 | |
|
| 102 | |
|
| 103 | |
|
| 104 | |
|
| 105 | |
public Date getExpirationDate() { |
| 106 | 0 | return expirationDate; |
| 107 | |
} |
| 108 | |
|
| 109 | |
public void setExpirationDate(Date expirationDate) { |
| 110 | 0 | this.expirationDate = expirationDate; |
| 111 | 0 | } |
| 112 | |
|
| 113 | |
|
| 114 | |
|
| 115 | |
|
| 116 | |
public MetaInfo getMetaInfo() { |
| 117 | 0 | return metaInfo; |
| 118 | |
} |
| 119 | |
|
| 120 | |
public void setMetaInfo(MetaInfo metaInfo) { |
| 121 | 0 | this.metaInfo = metaInfo; |
| 122 | 0 | } |
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
|
| 127 | |
public String getId() { |
| 128 | 0 | return id; |
| 129 | |
} |
| 130 | |
|
| 131 | |
public void setId(String id) { |
| 132 | 0 | this.id = id; |
| 133 | 0 | } |
| 134 | |
} |