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    *   OleSourceOfTerm is business object class for Source Of Term Maintenance Document
10   */
11  public class OleSourceOfTerm extends PersistableBusinessObjectBase {
12  
13      private String sourceOfTermId;
14      private String sourceOfTermCode;
15      private String sourceOfTermName;
16      private String source;
17      private Date sourceDate;
18      private boolean active;
19  
20      /**
21       *  Gets the sourceOfTermId attribute.
22       * @return  Returns the sourceOfTermId
23       */
24      public String getSourceOfTermId() {
25          return sourceOfTermId;
26      }
27  
28      /**
29       * Sets the sourceOfTermId attribute value.
30       * @param sourceOfTermId The sourceOfTermId to set.
31       */
32      public void setSourceOfTermId(String sourceOfTermId) {
33          this.sourceOfTermId = sourceOfTermId;
34      }
35  
36      /**
37       *  Gets the sourceOfTermCode attribute.
38       * @return  Returns the sourceOfTermCode
39       */
40      public String getSourceOfTermCode() {
41          return sourceOfTermCode;
42      }
43  
44      /**
45       * Sets the sourceOfTermCode attribute value.
46       * @param sourceOfTermCode The sourceOfTermCode to set.
47       */
48      public void setSourceOfTermCode(String sourceOfTermCode) {
49          this.sourceOfTermCode = sourceOfTermCode;
50      }
51  
52      /**
53       *  Gets the sourceOfTermName attribute.
54       * @return  Returns the sourceOfTermName
55       */
56      public String getSourceOfTermName() {
57          return sourceOfTermName;
58      }
59  
60      /**
61       * Sets the sourceOfTermName attribute value.
62       * @param sourceOfTermName The sourceOfTermName to set.
63       */
64      public void setSourceOfTermName(String sourceOfTermName) {
65          this.sourceOfTermName = sourceOfTermName;
66      }
67  
68      /**
69       *  Gets the source attribute.
70       * @return  Returns the source
71       */
72      public String getSource() {
73          return source;
74      }
75  
76      /**
77       * Sets the source attribute value.
78       * @param source The source to set.
79       */
80      public void setSource(String source) {
81          this.source = source;
82      }
83  
84      /**
85       *  Gets the sourceDate attribute.
86       * @return  Returns the sourceDate
87       */
88      public Date getSourceDate() {
89          return sourceDate;
90      }
91  
92      /**
93       * Sets the sourceDate attribute value.
94       * @param sourceDate The sourceDate to set.
95       */
96      public void setSourceDate(Date sourceDate) {
97          this.sourceDate = sourceDate;
98      }
99  
100     /**
101      *  Gets the active attribute.
102      * @return  Returns the active
103      */
104     public boolean isActive() {
105         return active;
106     }
107 
108     /**
109      * Sets the active attribute value.
110      * @param active The active to set.
111      */
112     public void setActive(boolean active) {
113         this.active = active;
114     }
115 
116     /**
117      *  Gets the toStringMap attribute.
118      * @return  Returns the toStringMap
119      */
120     protected LinkedHashMap toStringMapper() {
121         LinkedHashMap toStringMap = new LinkedHashMap();
122         toStringMap.put("sourceOfTermId", sourceOfTermId);
123         toStringMap.put("sourceOfTermCode", sourceOfTermCode);
124         toStringMap.put("sourceOfTermName", sourceOfTermName);
125         toStringMap.put("source", source);
126         toStringMap.put("sourceDate", sourceDate);
127         toStringMap.put("active", active);
128         return toStringMap;
129     }
130 
131 }
132 
133 
134 
135 
136 
137 
138 
139 
140 
141 
142 
143 
144 
145 
146 
147 
148 
149 
150 
151 
152