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   /**
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       * @return  Returns the locationStatusId
24       */
25      public String getLocationStatusId() {
26          return locationStatusId;
27      }
28  
29      /**
30       * Sets the locationStatusId attribute value.
31       * @param locationStatusId The locationStatusId to set.
32       */
33      public void setLocationStatusId(String locationStatusId) {
34          this.locationStatusId = locationStatusId;
35      }
36  
37      /**
38       *  Gets the locationStatusCode attribute.
39       * @return  Returns the locationStatusCode
40       */
41      public String getLocationStatusCode() {
42          return locationStatusCode;
43      }
44  
45      /**
46       * Sets the locationStatusCode attribute value.
47       * @param locationStatusCode The locationStatusCode to set.
48       */
49      public void setLocationStatusCode(String locationStatusCode) {
50          this.locationStatusCode = locationStatusCode;
51      }
52  
53      /**
54       *  Gets the locationStatusName attribute.
55       * @return  Returns the locationStatusName
56       */
57      public String getLocationStatusName() {
58          return locationStatusName;
59      }
60  
61      /**
62       * Sets the locationStatusName attribute value.
63       * @param locationStatusName The locationStatusName to set.
64       */
65      public void setLocationStatusName(String locationStatusName) {
66          this.locationStatusName = locationStatusName;
67      }
68  
69      /**
70       *  Gets the source attribute.
71       * @return  Returns the source
72       */
73      public String getSource() {
74          return source;
75      }
76  
77      /**
78       * Sets the source attribute value.
79       * @param source The source to set.
80       */
81      public void setSource(String source) {
82          this.source = source;
83      }
84  
85      /**
86       *  Gets the sourceDate attribute.
87       * @return  Returns the sourceDate
88       */
89      public Date getSourceDate() {
90          return sourceDate;
91      }
92  
93      /**
94       * Sets the sourceDate attribute value.
95       * @param sourceDate The sourceDate to set.
96       */
97      public void setSourceDate(Date sourceDate) {
98          this.sourceDate = sourceDate;
99      }
100 
101     /**
102      *  Gets the active attribute.
103      * @return  Returns the active
104      */
105     public boolean isActive() {
106         return active;
107     }
108 
109     /**
110      * Sets the active attribute value.
111      * @param active The active to set.
112      */
113     public void setActive(boolean active) {
114         this.active = active;
115     }
116 
117     /**
118      *  Gets the toStringMap attribute.
119      * @return  Returns the toStringMap
120      */
121     protected LinkedHashMap toStringMapper() {
122         LinkedHashMap toStringMap = new LinkedHashMap();
123         toStringMap.put("locationStatusId", locationStatusId);
124         return toStringMap;
125     }
126 
127 
128 }