View Javadoc
1   package org.kuali.ole.pojo;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlRootElement;
6   
7   /**
8    * Created with IntelliJ IDEA.
9    * User: maheswarang
10   * Date: 4/17/14
11   * Time: 1:07 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  @XmlAccessorType(XmlAccessType.FIELD)
15  @XmlRootElement(name="oleSruItem")
16  public class OLESruItem {
17  
18      private String itemDueDate;
19      private boolean renewable;
20      private String shelvingLocation;
21      private String localLocation;
22  
23      public String getItemDueDate() {
24          return itemDueDate;
25      }
26  
27      public void setItemDueDate(String itemDueDate) {
28          this.itemDueDate = itemDueDate;
29      }
30  
31      public boolean isRenewable() {
32          return renewable;
33      }
34  
35      public void setRenewable(boolean renewable) {
36          this.renewable = renewable;
37      }
38  
39      public String getShelvingLocation() {
40          return shelvingLocation;
41      }
42  
43      public void setShelvingLocation(String shelvingLocation) {
44          this.shelvingLocation = shelvingLocation;
45      }
46  
47      public String getLocalLocation() {
48          return localLocation;
49      }
50  
51      public void setLocalLocation(String localLocation) {
52          this.localLocation = localLocation;
53      }
54  }