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