001package org.kuali.ole.select.form;
002
003import org.kuali.ole.select.document.OLEPurchaseOrderBatchDocument;
004import org.kuali.rice.krad.web.form.TransactionalDocumentFormBase;
005
006/**
007 * Created with IntelliJ IDEA.
008 * User: gopalp
009 * Date: 5/15/15
010 * Time: 1:15 PM
011 * To change this template use File | Settings | File Templates.
012 */
013public class OLEPurchaseOrderBatchForm extends TransactionalDocumentFormBase {
014
015    private OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument;
016
017    public OLEPurchaseOrderBatchDocument getOlePurcharseOrderBatchDocument() {
018        return olePurcharseOrderBatchDocument;
019    }
020
021    public void setOlePurcharseOrderBatchDocument(OLEPurchaseOrderBatchDocument olePurcharseOrderBatchDocument) {
022        this.olePurcharseOrderBatchDocument = olePurcharseOrderBatchDocument;
023    }
024
025    @Override
026    protected String getDefaultDocumentTypeName() {
027        return "OLE_POBA";
028    }
029}