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