View Javadoc

1   package org.kuali.ole.patron.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   import java.util.LinkedHashMap;
5   
6   /**
7    * BarcodeStatus provides barcode status information through getter and setter.
8    */
9   
10  public class BarcodeStatus extends PersistableBusinessObjectBase {
11  
12      private String barcodeStatusId;
13      private String barcodeStatusCode;
14      private String barcodeStatusName;
15      private boolean active;
16      private boolean delete;
17  
18      /**
19       * Gets the value of barcodeStatusId property
20       * @return barcodeStatusId
21       */
22      public String getBarcodeStatusId() {
23          return barcodeStatusId;
24      }
25      /**
26       * Sets the value for barcodeStatusId property
27       * @param barcodeStatusId
28       */
29      public void setBarcodeStatusId(String barcodeStatusId) {
30          this.barcodeStatusId = barcodeStatusId;
31      }
32  
33      /**
34       * default constructor
35       */
36      public  BarcodeStatus(){
37  
38      }
39      /**
40       * Gets the value of barcodeStatusCode property
41       * @return barcodeStatusCode
42       */
43      public String getBarcodeStatusCode() {
44          return barcodeStatusCode;
45      }
46      /**
47       * Sets the value for barcodeStatusCode property
48       * @param barcodeStatusCode
49       */
50      public void setBarcodeStatusCode(String barcodeStatusCode) {
51          this.barcodeStatusCode = barcodeStatusCode;
52      }
53      /**
54       * Gets the value of barcodeStatusName property
55       * @return barcodeStatusName
56       */
57      public String getBarcodeStatusName() {
58          return barcodeStatusName;
59      }
60      /**
61       * Sets the value for barcodeStatusName property
62       * @param barcodeStatusName
63       */
64      public void setBarcodeStatusName(String barcodeStatusName) {
65          this.barcodeStatusName = barcodeStatusName;
66      }
67      /**
68       * Gets the boolean value of active property
69       * @return active
70       */
71      public boolean isActive() {
72          return active;
73      }
74      /**
75       * Sets the boolean value for active property
76       * @param active
77       */
78      public void setActive(boolean active) {
79          this.active = active;
80      }
81      /**
82       * Gets the boolean value of delete property
83       * @return delete
84       */
85      public boolean isDelete() {
86          return delete;
87      }
88      /**
89       * Sets the boolean value for delete property
90       * @param delete
91       */
92      public void setDelete(boolean delete) {
93          this.delete = delete;
94      }
95      protected LinkedHashMap toStringMapper() {
96          LinkedHashMap toStringMap = new LinkedHashMap();
97          toStringMap.put("barcodeStatusId", barcodeStatusId);
98          return toStringMap;
99      }
100 }