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:41 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class WorkHoldingsDocument  {
11      private String holdingsIdentifier;
12      private String locationName;
13      private String callNumber;
14  
15  
16      public String getHoldingsIdentifier() {
17          return holdingsIdentifier;
18      }
19  
20      public void setHoldingsIdentifier(String holdingsIdentifier) {
21          this.holdingsIdentifier = holdingsIdentifier;
22      }
23  
24      public String getLocationName() {
25          return locationName;
26      }
27  
28      public void setLocationName(String locationName) {
29          this.locationName = locationName;
30      }
31  
32      public String getCallNumber() {
33          return callNumber;
34      }
35  
36      public void setCallNumber(String callNumber) {
37          this.callNumber = callNumber;
38      }
39  
40      @Override
41      public String toString() {
42          return "WorkHoldingsDocument{" +
43                  "holdingsIdentifier='" + holdingsIdentifier + '\'' +
44                  ", locationName='" + locationName + '\'' +
45                  ", callNumber='" + callNumber + '\'' +
46                  '}';
47      }
48  }