1 package org.kuali.ole.select.document.krad; 2 3 import java.util.List; 4 5 import org.kuali.ole.select.businessobject.OleInvoiceItem; 6 import org.kuali.rice.krad.uif.component.Component; 7 import org.kuali.rice.krad.uif.element.Action; 8 import org.kuali.rice.krad.uif.widget.QuickFinder; 9 10 public class OleInvoiceItemsLine { 11 12 private int lineNumber; 13 private String lineId; 14 private String bindPath; 15 private OleInvoiceItem item; 16 private List<Action> actions; 17 private QuickFinder relinkQuickfinder; 18 private Component rowDetails; 19 20 public int getLineNumber() { 21 return lineNumber; 22 } 23 24 public void setLineNumber(int lineNumber) { 25 this.lineNumber = lineNumber; 26 } 27 28 public String getLineId() { 29 return lineId; 30 } 31 32 public void setLineId(String lineId) { 33 this.lineId = lineId; 34 } 35 36 public String getBindPath() { 37 return bindPath; 38 } 39 40 public void setBindPath(String bindPath) { 41 this.bindPath = bindPath; 42 } 43 44 public OleInvoiceItem getItem() { 45 return item; 46 } 47 48 public void setItem(OleInvoiceItem item) { 49 this.item = item; 50 } 51 52 public List<Action> getActions() { 53 return actions; 54 } 55 56 public void setActions(List<Action> actions) { 57 this.actions = actions; 58 } 59 60 public QuickFinder getRelinkQuickfinder() { 61 return relinkQuickfinder; 62 } 63 64 public void setRelinkQuickfinder(QuickFinder relinkQuickfinder) { 65 this.relinkQuickfinder = relinkQuickfinder; 66 } 67 68 public Component getRowDetails() { 69 return rowDetails; 70 } 71 72 public void setRowDetails(Component rowDetails) { 73 this.rowDetails = rowDetails; 74 } 75 76 @Override 77 public String toString() { 78 return "OleInvoiceItemsLine [lineId=" + lineId + ", bindPath=" 79 + bindPath + ", item=" + item + "]"; 80 } 81 82 } 83