View Javadoc

1   package org.kuali.ole.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  
30      public String getHoldId() {
31          return holdId;
32      }
33  
34      public void setHoldId(String holdId) {
35          this.holdId = holdId;
36      }
37  
38      public String getItemBarcode() {
39          return itemBarcode;
40      }
41  
42      public void setItemBarcode(String itemBarcode) {
43          this.itemBarcode = itemBarcode;
44      }
45  }