1 | |
package edu.sampleu.bookstore.document.web; |
2 | |
|
3 | |
import edu.sampleu.bookstore.bo.BookOrder; |
4 | |
import edu.sampleu.bookstore.document.BookOrderDocument; |
5 | |
import org.kuali.rice.kns.web.struts.form.KualiTransactionalDocumentFormBase; |
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | 0 | public class BookOrderForm extends KualiTransactionalDocumentFormBase { |
11 | |
|
12 | |
private static final long serialVersionUID = -206564464059467788L; |
13 | |
|
14 | |
private BookOrder newBookOrder; |
15 | |
|
16 | |
public BookOrder getNewBookOrder() { |
17 | 0 | return newBookOrder; |
18 | |
} |
19 | |
|
20 | |
public void setNewBookOrder(BookOrder newBookOrder) { |
21 | 0 | this.newBookOrder = newBookOrder; |
22 | 0 | } |
23 | |
|
24 | |
public BookOrderDocument getBookOrderDocument() { |
25 | 0 | return (BookOrderDocument) getDocument(); |
26 | |
} |
27 | |
|
28 | |
} |