1 package org.kuali.ole.loaders.describe.bo;
2
3 import org.codehaus.jackson.annotate.JsonAutoDetect;
4 import org.codehaus.jackson.annotate.JsonMethod;
5 import org.codehaus.jackson.annotate.JsonProperty;
6
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlRootElement;
11
12
13
14
15 @XmlRootElement(name = "oleLocation")
16 @XmlAccessorType(XmlAccessType.FIELD)
17 @JsonAutoDetect(JsonMethod.FIELD)
18 public class OLELocationBo {
19
20 @XmlElement
21 @JsonProperty
22 private String locationCode;
23
24 @XmlElement
25 @JsonProperty
26 private String locationId;
27
28 @XmlElement
29 @JsonProperty
30 private String locationName;
31
32 @XmlElement
33 @JsonProperty
34 private String parentLocationId;
35
36 @XmlElement
37 @JsonProperty
38 private String locationLevelId;
39
40 public String getLocationCode() {
41 return locationCode;
42 }
43
44 public void setLocationCode(String locationCode) {
45 this.locationCode = locationCode;
46 }
47
48 public String getLocationId() {
49 return locationId;
50 }
51
52 public void setLocationId(String locationId) {
53 this.locationId = locationId;
54 }
55
56 public String getLocationName() {
57 return locationName;
58 }
59
60 public void setLocationName(String locationName) {
61 this.locationName = locationName;
62 }
63
64 public String getParentLocationId() {
65 return parentLocationId;
66 }
67
68 public void setParentLocationId(String parentLocationId) {
69 this.parentLocationId = parentLocationId;
70 }
71
72 public String getLocationLevelId() {
73 return locationLevelId;
74 }
75
76 public void setLocationLevelId(String locationLevelId) {
77 this.locationLevelId = locationLevelId;
78 }
79 }
80