1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5
6
7
8 public class OlePatronAffiliations {
9
10 private String affiliationType;
11 private String campusCode;
12 private List<OlePatronEmployments> employments;
13 private boolean active;
14
15
16
17
18
19
20
21 public String getAffiliationType() {
22 return affiliationType;
23 }
24
25
26
27
28 public void setAffiliationType(String affiliationType) {
29 this.affiliationType = affiliationType;
30 }
31
32
33
34
35 public String getCampusCode() {
36 return campusCode;
37 }
38
39
40
41
42 public void setCampusCode(String campusCode) {
43 this.campusCode = campusCode;
44 }
45
46
47
48
49 public List<OlePatronEmployments> getEmployments() {
50 return employments;
51 }
52
53
54
55
56 public void setEmployments(List<OlePatronEmployments> employments) {
57 this.employments = employments;
58 }
59
60
61
62
63
64 public boolean isActive() {
65 return active;
66 }
67
68
69
70
71 public void setActive(boolean active) {
72 this.active = active;
73 }
74
75 }