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 import java.util.Date;
12
13
14
15
16 @XmlRootElement(name = "oleShelvingScheme")
17 @XmlAccessorType(XmlAccessType.FIELD)
18 @JsonAutoDetect(JsonMethod.FIELD)
19 public class OLEShelvingSchemeBo {
20
21 @XmlElement
22 @JsonProperty
23 private Integer shelvingSchemeId;
24
25 @XmlElement
26 @JsonProperty
27 private String shelvingSchemeCode;
28
29 @XmlElement
30 @JsonProperty
31 private String shelvingSchemeName;
32
33 @XmlElement
34 @JsonProperty
35 private String source;
36
37 @XmlElement
38 @JsonProperty
39 private Date sourceDate;
40
41 @XmlElement
42 @JsonProperty
43 private boolean active;
44
45 public Integer getShelvingSchemeId() {
46 return shelvingSchemeId;
47 }
48
49 public void setShelvingSchemeId(Integer shelvingSchemeId) {
50 this.shelvingSchemeId = shelvingSchemeId;
51 }
52
53 public String getShelvingSchemeCode() {
54 return shelvingSchemeCode;
55 }
56
57 public void setShelvingSchemeCode(String shelvingSchemeCode) {
58 this.shelvingSchemeCode = shelvingSchemeCode;
59 }
60
61 public String getShelvingSchemeName() {
62 return shelvingSchemeName;
63 }
64
65 public void setShelvingSchemeName(String shelvingSchemeName) {
66 this.shelvingSchemeName = shelvingSchemeName;
67 }
68
69 public String getSource() {
70 return source;
71 }
72
73 public void setSource(String source) {
74 this.source = source;
75 }
76
77 public Date getSourceDate() {
78 return sourceDate;
79 }
80
81 public void setSourceDate(Date sourceDate) {
82 this.sourceDate = sourceDate;
83 }
84
85 public boolean isActive() {
86 return active;
87 }
88
89 public void setActive(boolean active) {
90 this.active = active;
91 }
92 }