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