View Javadoc

1   package org.kuali.student.core.assembly.data;
2   
3   import java.util.Date;
4   import java.util.List;
5   
6   import org.kuali.student.common.validator.old.ConstraintMockAddress;
7   
8   public class MockPerson {
9       protected String firstName;
10      
11      protected String lastName;
12      
13      protected String type;
14      
15      protected String state;
16      
17      protected String id;
18      
19      protected String email;
20      
21      protected Double gpa;
22      
23      protected Date dob;
24      
25      protected List<MockAddress> address;
26  
27      /**
28       * @return the firstName
29       */
30      public String getFirstName() {
31          return firstName;
32      }
33  
34      /**
35       * @param firstName the firstName to set
36       */
37      public void setFirstName(String firstName) {
38          this.firstName = firstName;
39      }
40  
41      /**
42       * @return the lastName
43       */
44      public String getLastName() {
45          return lastName;
46      }
47  
48      /**
49       * @param lastName the lastName to set
50       */
51      public void setLastName(String lastName) {
52          this.lastName = lastName;
53      }
54  
55      /**
56       * @return the type
57       */
58      public String getType() {
59          return type;
60      }
61  
62      /**
63       * @param type the type to set
64       */
65      public void setType(String type) {
66          this.type = type;
67      }
68  
69      /**
70       * @return the state
71       */
72      public String getState() {
73          return state;
74      }
75  
76      /**
77       * @param state the state to set
78       */
79      public void setState(String state) {
80          this.state = state;
81      }
82  
83      /**
84       * @return the id
85       */
86      public String getId() {
87          return id;
88      }
89  
90      /**
91       * @param id the id to set
92       */
93      public void setId(String id) {
94          this.id = id;
95      }
96  
97      /**
98       * @return the email
99       */
100     public String getEmail() {
101         return email;
102     }
103 
104     /**
105      * @param email the email to set
106      */
107     public void setEmail(String email) {
108         this.email = email;
109     }
110 
111     /**
112      * @return the address
113      */
114     public List<MockAddress> getAddress() {
115         return address;
116     }
117 
118     /**
119      * @param address the address to set
120      */
121     public void setAddress(List<MockAddress> address) {
122         this.address = address;
123     }
124 
125     /**
126      * @return the gpa
127      */
128     public Double getGpa() {
129         return gpa;
130     }
131 
132     /**
133      * @param gpa the gpa to set
134      */
135     public void setGpa(Double gpa) {
136         this.gpa = gpa;
137     }
138 
139     /**
140      * @return the dob
141      */
142     public Date getDob() {
143         return dob;
144     }
145 
146     /**
147      * @param dob the dob to set
148      */
149     public void setDob(Date dob) {
150         this.dob = dob;
151     }   
152 
153 }