1 package org.kuali.ole.describe.krad;
2
3 import org.kuali.ole.deliver.bo.OLEBibSearchResultDisplayRow;
4 import org.kuali.ole.describe.bo.SearchResultDisplayRow;
5 import org.kuali.rice.krad.uif.component.Component;
6
7
8
9
10 public class OleItemSearchLines {
11 private int lineNumber;
12 private String lineId;
13 private String bindPath;
14 private OLEBibSearchResultDisplayRow deliverRow;
15 private Component rowDetails;
16
17 public int getLineNumber() {
18 return lineNumber;
19 }
20
21 public void setLineNumber(int lineNumber) {
22 this.lineNumber = lineNumber;
23 }
24
25 public String getLineId() {
26 return lineId;
27 }
28
29 public void setLineId(String lineId) {
30 this.lineId = lineId;
31 }
32
33 public String getBindPath() {
34 return bindPath;
35 }
36
37 public void setBindPath(String bindPath) {
38 this.bindPath = bindPath;
39 }
40
41
42 public OLEBibSearchResultDisplayRow getDeliverRow() {
43 return deliverRow;
44 }
45
46 public void setDeliverRow(OLEBibSearchResultDisplayRow deliverRow) {
47 this.deliverRow = deliverRow;
48 }
49
50 public Component getRowDetails() {
51 return rowDetails;
52 }
53
54 public void setRowDetails(Component rowDetails) {
55 this.rowDetails = rowDetails;
56 }
57
58 @Override
59 public String toString() {
60 return "OleSearchLine [row=" + deliverRow + "]";
61 }
62
63 }
64