001 package org.kuali.ole.catalog.bo; 002 003 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 004 005 import java.sql.Date; 006 import java.util.LinkedHashMap; 007 008 /** 009 * Created with IntelliJ IDEA. 010 * User: ? 011 * Date: 6/5/12 012 * Time: 1:53 PM 013 * To change this template use File | Settings | File Templates. 014 */ 015 public class OleShelvingOrder extends PersistableBusinessObjectBase { 016 private Integer shelvingOrderId; 017 private String shelvingOrderCode; 018 private String shelvingOrderName; 019 private String source; 020 private Date sourceDate; 021 private boolean active; 022 023 /** 024 * Gets the shelvingOrderId attribute. 025 * @return Returns the shelvingOrderId 026 */ 027 public Integer getShelvingOrderId() { 028 return shelvingOrderId; 029 } 030 031 /** 032 * Sets the shelvingOrderId attribute value. 033 * @param shelvingOrderId The shelvingOrderId to set. 034 */ 035 public void setShelvingOrderId(Integer shelvingOrderId) { 036 this.shelvingOrderId = shelvingOrderId; 037 } 038 039 /** 040 * Gets the shelvingOrderCode attribute. 041 * @return Returns the shelvingOrderCode 042 */ 043 public String getShelvingOrderCode() { 044 return shelvingOrderCode; 045 } 046 047 /** 048 * Sets the shelvingOrderCode attribute value. 049 * @param shelvingOrderCode The shelvingOrderCode to set. 050 */ 051 public void setShelvingOrderCode(String shelvingOrderCode) { 052 this.shelvingOrderCode = shelvingOrderCode; 053 } 054 055 /** 056 * Gets the shelvingOrderName attribute. 057 * @return Returns the shelvingOrderName 058 */ 059 public String getShelvingOrderName() { 060 return shelvingOrderName; 061 } 062 063 /** 064 * Sets the shelvingOrderName attribute value. 065 * @param shelvingOrderName The shelvingOrderName to set. 066 */ 067 public void setShelvingOrderName(String shelvingOrderName) { 068 this.shelvingOrderName = shelvingOrderName; 069 } 070 071 /** 072 * Gets the source attribute. 073 * @return Returns the source 074 */ 075 public String getSource() { 076 return source; 077 } 078 079 /** 080 * Sets the source attribute value. 081 * @param source The source to set. 082 */ 083 public void setSource(String source) { 084 this.source = source; 085 } 086 087 /** 088 * Gets the sourceDate attribute. 089 * @return Returns the sourceDate 090 */ 091 public Date getSourceDate() { 092 return sourceDate; 093 } 094 095 /** 096 * Sets the sourceDate attribute value. 097 * @param sourceDate The sourceDate to set. 098 */ 099 public void setSourceDate(Date sourceDate) { 100 this.sourceDate = sourceDate; 101 } 102 103 /** 104 * Gets the active attribute. 105 * @return Returns the active 106 */ 107 public boolean isActive() { 108 return active; 109 } 110 111 /** 112 * Sets the active attribute value. 113 * @param active The active to set. 114 */ 115 public void setActive(boolean active) { 116 this.active = active; 117 } 118 119 /** 120 * Gets the toStringMap attribute. 121 * @return Returns the toStringMap 122 */ 123 protected LinkedHashMap toStringMapper() { 124 LinkedHashMap toStringMap = new LinkedHashMap(); 125 toStringMap.put("shelvingOrderId", shelvingOrderId); 126 return toStringMap; 127 } 128 }