1 package org.kuali.ole.describe.krad;
2
3 import org.kuali.ole.select.document.OLEEResourceInstance;
4
5
6
7
8
9 public class OLEEResourceSearchLine {
10 private int lineNumber;
11 private String lineId;
12 private String bindPath;
13 private OLEEResourceInstance 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 String getBindPath() {
32 return bindPath;
33 }
34
35 public void setBindPath(String bindPath) {
36 this.bindPath = bindPath;
37 }
38
39 public OLEEResourceInstance getRow() {
40 return row;
41 }
42
43 public void setRow(OLEEResourceInstance row) {
44 this.row = row;
45 }
46
47 @Override
48 public String toString() {
49 return "OLEEResourceInstance [row=" + row + "]";
50 }
51
52 }