1 package org.kuali.ole.select.form;
2
3 import org.kuali.ole.select.document.OLEPurchaseOrderBatchDocument;
4 import org.kuali.rice.krad.web.form.TransactionalDocumentFormBase;
5
6
7
8
9
10
11
12
13 public class OLEPurchaseOrderBatchForm extends TransactionalDocumentFormBase {
14
15 private OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument;
16
17 public OLEPurchaseOrderBatchDocument getOlePurcharseOrderBatchDocument() {
18 return olePurcharseOrderBatchDocument;
19 }
20
21 public void setOlePurcharseOrderBatchDocument(OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument) {
22 this.olePurcharseOrderBatchDocument = olePurcharseOrderBatchDocument;
23 }
24
25 @Override
26 protected String getDefaultDocumentTypeName() {
27 return "OLE_POBA";
28 }
29 }