1 package org.kuali.ole.ingest.pojo;
2
3
4
5
6 public class OleLocationIngest {
7
8 private String locationCode;
9 private String locationName;
10 private String locationLevelCode;
11 private String parentLocationCode;
12 private String locationId;
13
14
15
16
17 public String getLocationId() {
18 return locationId;
19 }
20
21
22
23
24 public void setLocationId(String locationId) {
25 this.locationId = locationId;
26 }
27
28
29
30
31 public String getLocationCode() {
32
33 return locationCode;
34 }
35
36
37
38
39 public void setLocationCode(String locationCode) {
40 this.locationCode = locationCode;
41 }
42
43
44
45
46 public String getLocationName() {
47 return locationName;
48 }
49
50
51
52
53 public void setLocationName(String locationName) {
54 this.locationName = locationName;
55 }
56
57
58
59
60 public String getLocationLevelCode() {
61 return locationLevelCode;
62 }
63
64
65
66
67 public void setLocationLevelCode(String locationLevelCode) {
68 this.locationLevelCode = locationLevelCode;
69 }
70
71
72
73
74 public String getParentLocationCode() {
75 return parentLocationCode;
76 }
77
78
79
80
81 public void setParentLocationCode(String parentLocationCode) {
82 this.parentLocationCode = parentLocationCode;
83 }
84 }