View Javadoc

1   package org.kuali.ole.catalog.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.sql.Date;
6   import java.util.LinkedHashMap;
7   
8   /**
9    * OleShelvingOrder is business object class for Shelving Order Maintenance Document
10   */
11  public class OleShelvingOrder extends PersistableBusinessObjectBase {
12      private Integer shelvingOrderId;
13      private String shelvingOrderCode;
14      private String shelvingOrderName;
15      private String source;
16      private Date sourceDate;
17      private boolean active;
18  
19      /**
20       *  Gets the shelvingOrderId attribute.
21       * @return  Returns the shelvingOrderId
22       */
23      public Integer getShelvingOrderId() {
24          return shelvingOrderId;
25      }
26  
27      /**
28       * Sets the shelvingOrderId attribute value.
29       * @param shelvingOrderId The shelvingOrderId to set.
30       */
31      public void setShelvingOrderId(Integer shelvingOrderId) {
32          this.shelvingOrderId = shelvingOrderId;
33      }
34  
35      /**
36       *  Gets the shelvingOrderCode attribute.
37       * @return  Returns the shelvingOrderCode
38       */
39      public String getShelvingOrderCode() {
40          return shelvingOrderCode;
41      }
42  
43      /**
44       * Sets the shelvingOrderCode attribute value.
45       * @param shelvingOrderCode The shelvingOrderCode to set.
46       */
47      public void setShelvingOrderCode(String shelvingOrderCode) {
48          this.shelvingOrderCode = shelvingOrderCode;
49      }
50  
51      /**
52       *  Gets the shelvingOrderName attribute.
53       * @return  Returns the shelvingOrderName
54       */
55      public String getShelvingOrderName() {
56          return shelvingOrderName;
57      }
58  
59      /**
60       * Sets the shelvingOrderName attribute value.
61       * @param shelvingOrderName The shelvingOrderName to set.
62       */
63      public void setShelvingOrderName(String shelvingOrderName) {
64          this.shelvingOrderName = shelvingOrderName;
65      }
66  
67      /**
68       *  Gets the source attribute.
69       * @return  Returns the source
70       */
71      public String getSource() {
72          return source;
73      }
74  
75      /**
76       * Sets the source attribute value.
77       * @param source The source to set.
78       */
79      public void setSource(String source) {
80          this.source = source;
81      }
82  
83      /**
84       *  Gets the sourceDate attribute.
85       * @return  Returns the sourceDate
86       */
87      public Date getSourceDate() {
88          return sourceDate;
89      }
90  
91      /**
92       * Sets the sourceDate attribute value.
93       * @param sourceDate The sourceDate to set.
94       */
95      public void setSourceDate(Date sourceDate) {
96          this.sourceDate = sourceDate;
97      }
98  
99      /**
100      *  Gets the active attribute.
101      * @return  Returns the active
102      */
103     public boolean isActive() {
104         return active;
105     }
106 
107     /**
108      * Sets the active attribute value.
109      * @param active The active to set.
110      */
111     public void setActive(boolean active) {
112         this.active = active;
113     }
114 
115     /**
116      *  Gets the toStringMap attribute.
117      * @return  Returns the toStringMap
118      */
119     protected LinkedHashMap toStringMapper() {
120         LinkedHashMap toStringMap = new LinkedHashMap();
121         toStringMap.put("shelvingOrderId", shelvingOrderId);
122         return toStringMap;
123     }
124 }