View Javadoc
1   package org.kuali.asr.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   * Created with IntelliJ IDEA.
14   * User: maheswarang
15   * Date: 12/24/13
16   * Time: 6:25 PM
17   * To change this template use File | Settings | File Templates.
18   */
19  @XmlRootElement
20  @XmlAccessorType(XmlAccessType.FIELD)
21  @JsonAutoDetect(JsonMethod.FIELD)
22  public class ASRRequest {
23      @XmlElement
24      @JsonProperty
25      private String holdId;
26      @XmlElement
27      @JsonProperty
28      private String itemBarcode;
29      @XmlElement
30      @JsonProperty
31      private String title;
32      @XmlElement
33      @JsonProperty
34      private String author;
35      @XmlElement
36      @JsonProperty
37      private String callNumber;
38      @XmlElement
39      @JsonProperty
40      private String patronBarcode;
41      @XmlElement
42      @JsonProperty
43      private String patronName;
44      @XmlElement
45      @JsonProperty
46      private String requestDate;
47      @XmlElement
48      @JsonProperty
49      private String pickupLocation;
50      @XmlElement
51      @JsonProperty
52      private String requestStatus;
53  
54      public String getHoldId() {
55          return holdId;
56      }
57  
58      public void setHoldId(String holdId) {
59          this.holdId = holdId;
60      }
61  
62      public String getItemBarcode() {
63          return itemBarcode;
64      }
65  
66      public void setItemBarcode(String itemBarcode) {
67          this.itemBarcode = itemBarcode;
68      }
69  
70      public String getTitle() {
71          return title;
72      }
73  
74      public void setTitle(String title) {
75          this.title = title;
76      }
77  
78      public String getAuthor() {
79          return author;
80      }
81  
82      public void setAuthor(String author) {
83          this.author = author;
84      }
85  
86      public String getCallNumber() {
87          return callNumber;
88      }
89  
90      public void setCallNumber(String callNumber) {
91          this.callNumber = callNumber;
92      }
93  
94      public String getPatronBarcode() {
95          return patronBarcode;
96      }
97  
98      public void setPatronBarcode(String patronBarcode) {
99          this.patronBarcode = patronBarcode;
100     }
101 
102     public String getPatronName() {
103         return patronName;
104     }
105 
106     public void setPatronName(String patronName) {
107         this.patronName = patronName;
108     }
109 
110     public String getRequestDate() {
111         return requestDate;
112     }
113 
114     public void setRequestDate(String requestDate) {
115         this.requestDate = requestDate;
116     }
117 
118     public String getPickupLocation() {
119         return pickupLocation;
120     }
121 
122     public void setPickupLocation(String pickupLocation) {
123         this.pickupLocation = pickupLocation;
124     }
125 
126     public String getRequestStatus() {
127         return requestStatus;
128     }
129 
130     public void setRequestStatus(String requestStatus) {
131         this.requestStatus = requestStatus;
132     }
133 }