View Javadoc

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