1 package org.kuali.ole.describe.krad;
2
3
4 import org.kuali.ole.deliver.bo.OleLoanDocument;
5
6
7
8
9 public class ExistingSearchLine {
10 private int lineNumber;
11 private String lineId;
12 private String bindPath;
13 private OleLoanDocument row;
14
15 public int getLineNumber() {
16 return lineNumber;
17 }
18
19 public void setLineNumber(int lineNumber) {
20 this.lineNumber = lineNumber;
21 }
22
23 public String getLineId() {
24 return lineId;
25 }
26
27 public void setLineId(String lineId) {
28 this.lineId = lineId;
29 }
30
31 public OleLoanDocument getRow() {
32 return row;
33 }
34
35 public void setRow(OleLoanDocument row) {
36 this.row = row;
37 }
38
39 public String getBindPath() {
40 return bindPath;
41 }
42
43 public void setBindPath(String bindPath) {
44 this.bindPath = bindPath;
45 }
46
47
48
49 @Override
50 public String toString() {
51 return "OleLoanDocument [row=" + row + "]";
52 }
53
54 }