View Javadoc

1   /**
2    * 
3    */
4   package edu.sampleu.bookstore.bo;
5   
6   import java.util.LinkedHashMap;
7   
8   import org.kuali.rice.kim.bo.impl.KimAttributes;
9   
10  /**
11   * Class to hold all Bookstore application specific KIM attributes
12   *
13   */
14  public class BookstoreKimAttributes extends KimAttributes {
15  
16  	private static final long serialVersionUID = -1095291722496057450L;
17  
18  	public static final String BOOK_TYPE_CODE = "bookTypeCode";
19  
20  	protected String bookTypeCode;
21  
22  	protected BookType bookType;
23  
24  	 
25  
26  	public String getBookTypeCode() {
27  		return bookTypeCode;
28  	}
29  
30  	public void setBookTypeCode(String bookTypeCode) {
31  		this.bookTypeCode = bookTypeCode;
32  	}
33  
34  	public BookType getBookType() {
35  		return bookType;
36  	}
37  
38  	public void setBookType(BookType bookType) {
39  		this.bookType = bookType;
40  	}
41  
42  }