View Javadoc
1   package org.kuali.ole.docstore.discovery.model;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: ?
6    * Date: 22/2/13
7    * Time: 12:25 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class CallNumberBrowseParams {
11  
12      private String location;
13      private String classificationScheme;
14      private String callNumberBrowseText;
15  
16      private String title;
17  
18      private int numRows;
19      private int startIndex;
20      private int matchIndex;
21  
22      private int totalCallNumberCount;
23      private int totalForwardCallNumberCount;
24      private String docTye;
25  
26      public CallNumberBrowseParams() {
27  
28      }
29  
30      public CallNumberBrowseParams(String location, String classificationScheme, String callNumberBrowseText, int numRows, int startIndex, int matchIndex, int totalCallNumberCount, int totalForwardCallNumberCount, String docTye , String title) {
31          this.location = location;
32          this.classificationScheme = classificationScheme;
33          this.callNumberBrowseText = callNumberBrowseText;
34          this.numRows = numRows;
35          this.startIndex = startIndex;
36          this.matchIndex = matchIndex;
37          this.totalCallNumberCount = totalCallNumberCount;
38          this.totalForwardCallNumberCount = totalForwardCallNumberCount;
39          this.docTye = docTye;
40          this.title = title;
41      }
42  
43      public String getTitle() {
44          return title;
45      }
46  
47      public void setTitle(String title) {
48          this.title = title;
49      }
50  
51      public String getLocation() {
52          return location;
53      }
54  
55      public void setLocation(String location) {
56          this.location = location;
57      }
58  
59      public String getClassificationScheme() {
60          return classificationScheme;
61      }
62  
63      public void setClassificationScheme(String classificationScheme) {
64          this.classificationScheme = classificationScheme;
65      }
66  
67      public String getCallNumberBrowseText() {
68          return callNumberBrowseText;
69      }
70  
71      public void setCallNumberBrowseText(String callNumberBrowseText) {
72          this.callNumberBrowseText = callNumberBrowseText;
73      }
74  
75      public int getNumRows() {
76          return numRows;
77      }
78  
79      public void setNumRows(int numRows) {
80          this.numRows = numRows;
81      }
82  
83      public int getStartIndex() {
84          return startIndex;
85      }
86  
87      public void setStartIndex(int startIndex) {
88          this.startIndex = startIndex;
89      }
90  
91      public int getMatchIndex() {
92          return matchIndex;
93      }
94  
95      public void setMatchIndex(int matchIndex) {
96          this.matchIndex = matchIndex;
97      }
98  
99      public int getTotalCallNumberCount() {
100         return totalCallNumberCount;
101     }
102 
103     public void setTotalCallNumberCount(int totalCallNumberCount) {
104         this.totalCallNumberCount = totalCallNumberCount;
105     }
106 
107     public int getTotalForwardCallNumberCount() {
108         return totalForwardCallNumberCount;
109     }
110 
111     public void setTotalForwardCallNumberCount(int totalForwardCallNumberCount) {
112         this.totalForwardCallNumberCount = totalForwardCallNumberCount;
113     }
114 
115     public String getDocTye() {
116         return docTye;
117     }
118 
119     public void setDocTye(String docTye) {
120         this.docTye = docTye;
121     }
122 
123     @Override
124     public String toString() {
125         return "CallNumberBrowseParams{" +
126                 "location='" + location + '\'' +
127                 ", classificationScheme='" + classificationScheme + '\'' +
128                 ", callNumberBrowseText='" + callNumberBrowseText + '\'' +
129                 ", numRows=" + numRows +
130                 ", startIndex=" + startIndex +
131                 ", matchIndex=" + matchIndex +
132                 ", totalCallNumberCount=" + totalCallNumberCount +
133                 ", totalForwardCallNumberCount=" + totalForwardCallNumberCount +
134                 ", docType=" + docTye +
135                 '}';
136     }
137 }