View Javadoc

1   package org.kuali.ole.docstore.model.bo;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: Pranitha
6    * Date: 3/30/12
7    * Time: 10:43 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class WorkItemDocument extends OleDocument{
11      private String itemIdentifier;
12      private String callNumber;
13      private String location;
14      private String barcode;
15  
16      public String getItemIdentifier() {
17          return itemIdentifier;
18      }
19  
20      public void setItemIdentifier(String itemIdentifier) {
21          this.itemIdentifier = itemIdentifier;
22      }
23  
24      public String getCallNumber() {
25          return callNumber;
26      }
27  
28      public void setCallNumber(String callNumber) {
29          this.callNumber = callNumber;
30      }
31  
32      public String getLocation() {
33          return location;
34      }
35  
36      public void setLocation(String location) {
37          this.location = location;
38      }
39  
40      public String getBarcode() {
41          return barcode;
42      }
43  
44      public void setBarcode(String barcode) {
45          this.barcode = barcode;
46      }
47  
48      @Override
49      public String toString() {
50          return "WorkItemDocument{" +
51                  "itemIdentifier='" + itemIdentifier + '\'' +
52                  ", callNumber='" + callNumber + '\'' +
53                  ", location='" + location + '\'' +
54                  ", barcode='" + barcode + '\'' +
55                  '}';
56      }
57  }