001 /** 002 * 003 */ 004 package edu.sampleu.bookstore.bo; 005 006 import java.util.LinkedHashMap; 007 008 import org.kuali.rice.kim.bo.impl.KimAttributes; 009 010 /** 011 * Class to hold all Bookstore application specific KIM attributes 012 * 013 */ 014 public class BookstoreKimAttributes extends KimAttributes { 015 016 private static final long serialVersionUID = -1095291722496057450L; 017 018 public static final String BOOK_TYPE_CODE = "bookTypeCode"; 019 020 protected String bookTypeCode; 021 022 protected BookType bookType; 023 024 025 026 public String getBookTypeCode() { 027 return bookTypeCode; 028 } 029 030 public void setBookTypeCode(String bookTypeCode) { 031 this.bookTypeCode = bookTypeCode; 032 } 033 034 public BookType getBookType() { 035 return bookType; 036 } 037 038 public void setBookType(BookType bookType) { 039 this.bookType = bookType; 040 } 041 042 }