View Javadoc
1   package org.kuali.ole.pojo;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: sundarr
9    * Date: 7/3/13
10   * Time: 12:51 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OLESerialReceivingRecord {
14      private String serialReceivingRecordId;
15      private String boundLocation;
16      private String callNumber;
17      private String issn;
18      private String title;
19      private String unboundLocation;
20      private String subscriptionStatus;
21      private String checkInWorkUnit;
22      private String action;
23      private String bibId;
24      private String href;
25      private String instanceId;
26      private String staffOnlyFlag;
27      private String staffOnlyFlagStyle;
28  
29      public String getStaffOnlyFlagStyle() {
30          return staffOnlyFlagStyle;
31      }
32  
33      public void setStaffOnlyFlagStyle(String staffOnlyFlagStyle) {
34          this.staffOnlyFlagStyle = staffOnlyFlagStyle;
35      }
36  
37      public String getStaffOnlyFlag() {
38          return staffOnlyFlag;
39      }
40  
41      public void setStaffOnlyFlag(String staffOnlyFlag) {
42          this.staffOnlyFlag = staffOnlyFlag;
43      }
44  
45      public String getBibId() {
46          return bibId;
47      }
48  
49      public void setBibId(String bibId) {
50          this.bibId = bibId;
51      }
52  
53      public String getInstanceId() {
54          return instanceId;
55      }
56  
57      public void setInstanceId(String instanceId) {
58          this.instanceId = instanceId;
59      }
60  
61      public String getHref() {
62          return href;
63      }
64  
65      public void setHref(String href) {
66          this.href = href;
67      }
68  
69      public String getAction() {
70          return action;
71      }
72  
73      public void setAction(String action) {
74          this.action = action;
75      }
76  
77      public String getSerialReceivingRecordId() {
78          return serialReceivingRecordId;
79      }
80  
81      public void setSerialReceivingRecordId(String serialReceivingRecordId) {
82          this.serialReceivingRecordId = serialReceivingRecordId;
83      }
84  
85      public String getBoundLocation() {
86          return boundLocation;
87      }
88  
89      public void setBoundLocation(String boundLocation) {
90          this.boundLocation = boundLocation;
91      }
92  
93      public String getTitle() {
94          return title;
95      }
96  
97      public void setTitle(String title) {
98          this.title = title;
99      }
100 
101     public String getIssn() {
102         return issn;
103     }
104 
105     public void setIssn(String issn) {
106         this.issn = issn;
107     }
108 
109     public String getCallNumber() {
110         return callNumber;
111     }
112 
113     public void setCallNumber(String callNumber) {
114         this.callNumber = callNumber;
115     }
116 
117     public String getUnboundLocation() {
118         return unboundLocation;
119     }
120 
121     public void setUnboundLocation(String unboundLocation) {
122         this.unboundLocation = unboundLocation;
123     }
124 
125     public String getSubscriptionStatus() {
126         return subscriptionStatus;
127     }
128 
129     public void setSubscriptionStatus(String subscriptionStatus) {
130         this.subscriptionStatus = subscriptionStatus;
131     }
132 
133     public String getCheckInWorkUnit() {
134         return checkInWorkUnit;
135     }
136 
137     public void setCheckInWorkUnit(String checkInWorkUnit) {
138         this.checkInWorkUnit = checkInWorkUnit;
139     }
140 }