| 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 PersonVisaInfo implements Serializable, Idable { | 
  | 34 |  |   | 
  | 35 |  |      private static final long serialVersionUID = 1L; | 
  | 36 |  |   | 
  | 37 |  |      @XmlElement | 
  | 38 |  |      private String personId; | 
  | 39 |  |   | 
  | 40 |  |      @XmlElement | 
  | 41 |  |      private String visaTypeKey; | 
  | 42 |  |   | 
  | 43 |  |      @XmlElement | 
  | 44 |  |      private Date effectiveDate; | 
  | 45 |  |   | 
  | 46 |  |      @XmlElement | 
  | 47 |  |      private Date expirationDate; | 
  | 48 |  |   | 
  | 49 |  |      @XmlElement | 
  | 50 |  |      private String visaEntry; | 
  | 51 |  |   | 
  | 52 |  |      @XmlElement | 
  | 53 |  |      private String visaId; | 
  | 54 |  |   | 
  | 55 |  |      @XmlElement | 
  | 56 |  |      private MetaInfo metaInfo; | 
  | 57 |  |   | 
  | 58 |  |      @XmlAttribute | 
  | 59 |  |      private String id; | 
  | 60 |  |   | 
  | 61 |  |       | 
  | 62 |  |   | 
  | 63 |  |   | 
  | 64 |  |      public String getPersonId() { | 
  | 65 | 0 |          return personId; | 
  | 66 |  |      } | 
  | 67 |  |   | 
  | 68 |  |      public void setPersonId(String personId) { | 
  | 69 | 0 |          this.personId = personId; | 
  | 70 | 0 |      } | 
  | 71 |  |   | 
  | 72 |  |       | 
  | 73 |  |   | 
  | 74 |  |   | 
  | 75 |  |      public String getVisaTypeKey() { | 
  | 76 | 0 |          return visaTypeKey; | 
  | 77 |  |      } | 
  | 78 |  |   | 
  | 79 |  |      public void setVisaTypeKey(String visaTypeKey) { | 
  | 80 | 0 |          this.visaTypeKey = visaTypeKey; | 
  | 81 | 0 |      } | 
  | 82 |  |   | 
  | 83 |  |       | 
  | 84 |  |   | 
  | 85 |  |   | 
  | 86 |  |      public Date getEffectiveDate() { | 
  | 87 | 0 |          return effectiveDate; | 
  | 88 |  |      } | 
  | 89 |  |   | 
  | 90 |  |      public void setEffectiveDate(Date effectiveDate) { | 
  | 91 | 0 |          this.effectiveDate = effectiveDate; | 
  | 92 | 0 |      } | 
  | 93 |  |   | 
  | 94 |  |       | 
  | 95 |  |   | 
  | 96 |  |   | 
  | 97 |  |      public Date getExpirationDate() { | 
  | 98 | 0 |          return expirationDate; | 
  | 99 |  |      } | 
  | 100 |  |   | 
  | 101 |  |      public void setExpirationDate(Date expirationDate) { | 
  | 102 | 0 |          this.expirationDate = expirationDate; | 
  | 103 | 0 |      } | 
  | 104 |  |   | 
  | 105 |  |       | 
  | 106 |  |   | 
  | 107 |  |   | 
  | 108 |  |      public String getVisaEntry() { | 
  | 109 | 0 |          return visaEntry; | 
  | 110 |  |      } | 
  | 111 |  |   | 
  | 112 |  |      public void setVisaEntry(String visaEntry) { | 
  | 113 | 0 |          this.visaEntry = visaEntry; | 
  | 114 | 0 |      } | 
  | 115 |  |   | 
  | 116 |  |       | 
  | 117 |  |   | 
  | 118 |  |   | 
  | 119 |  |      public String getVisaId() { | 
  | 120 | 0 |          return visaId; | 
  | 121 |  |      } | 
  | 122 |  |   | 
  | 123 |  |      public void setVisaId(String visaId) { | 
  | 124 | 0 |          this.visaId = visaId; | 
  | 125 | 0 |      } | 
  | 126 |  |   | 
  | 127 |  |       | 
  | 128 |  |   | 
  | 129 |  |   | 
  | 130 |  |      public MetaInfo getMetaInfo() { | 
  | 131 | 0 |          return metaInfo; | 
  | 132 |  |      } | 
  | 133 |  |   | 
  | 134 |  |      public void setMetaInfo(MetaInfo metaInfo) { | 
  | 135 | 0 |          this.metaInfo = metaInfo; | 
  | 136 | 0 |      } | 
  | 137 |  |   | 
  | 138 |  |       | 
  | 139 |  |   | 
  | 140 |  |   | 
  | 141 |  |      public String getId() { | 
  | 142 | 0 |          return id; | 
  | 143 |  |      } | 
  | 144 |  |   | 
  | 145 |  |      public void setId(String id) { | 
  | 146 | 0 |          this.id = id; | 
  | 147 | 0 |      } | 
  | 148 |  |  } |