001package org.kuali.ole.select.document.krad;
002
003import org.kuali.ole.select.businessobject.OlePurchaseOrderItem;
004import org.kuali.rice.krad.uif.component.Component;
005
006public class OleInvoicePOCurrentItemsLine {
007
008        private String lineId;
009        private String bindPath;
010        private OlePurchaseOrderItem poItem;
011        private Component rowDetails;
012
013        public String getLineId() {
014                return lineId;
015        }
016
017        public void setLineId(String lineId) {
018                this.lineId = lineId;
019        }
020
021        public String getBindPath() {
022                return bindPath;
023        }
024
025        public void setBindPath(String bindPath) {
026                this.bindPath = bindPath;
027        }
028
029        public OlePurchaseOrderItem getPoItem() {
030                return poItem;
031        }
032
033        public void setPoItem(OlePurchaseOrderItem poItem) {
034                this.poItem = poItem;
035        }
036
037        public Component getRowDetails() {
038                return rowDetails;
039        }
040
041        public void setRowDetails(Component rowDetails) {
042                this.rowDetails = rowDetails;
043        }
044
045        @Override
046        public String toString() {
047                return "OleInvoicePOCurrentItemsLine [lineId=" + lineId + ", bindPath="
048                                + bindPath + ", poItem=" + poItem + "]";
049        }
050
051}
052