Clover Coverage Report - KS LUM 1.1.0-M10-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Dec 17 2010 06:40:47 EST
../../../../../img/srcFileCovDistChart0.png 54% of files have more coverage
26   244   25   1.04
0   114   0.96   25
25     1  
1    
 
  KualiStudentKimAttributes       Line # 27 26 0% 25 51 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.rice.student.bo;
17   
18    import java.util.LinkedHashMap;
19   
20    import org.kuali.rice.kim.bo.impl.KimAttributes;
21    import org.kuali.rice.kns.bo.TransientBusinessObjectBase;
22   
23    /**
24    * Data Dictionary entries for Kuali Student attributes needed by KIM
25    *
26    */
 
27    public class KualiStudentKimAttributes extends TransientBusinessObjectBase {
28   
29    private static final long serialVersionUID = 6969156403877595025L;
30   
31    public static final String DOCUMENT_TYPE_NAME = KimAttributes.DOCUMENT_TYPE_NAME;
32   
33    public static final String QUALIFICATION_DEPARTMENT_ID = "departmentId";
34    public static final String QUALIFICATION_DEPARTMENT = "department";
35    public static final String QUALIFICATION_DIVISION_ID = "divisionId";
36    public static final String QUALIFICATION_DIVISION = "division";
37    public static final String QUALIFICATION_COLLEGE_ID = "collegeId";
38    public static final String QUALIFICATION_COLLEGE = "college";
39    public static final String QUALIFICATION_ORG_ID = "orgId";
40    public static final String QUALIFICATION_ORG = "org";
41   
42    public static final String QUALIFICATION_DATA_ID = "dataId";
43    public static final String QUALIFICATION_CLU_ID = "cluId";
44    public static final String QUALIFICATION_DTO_NAME = "dtoName";
45    public static final String QUALIFICATION_DTO_FIELD_KEY = "dtoFieldKey";
46    public static final String QUALIFICATION_FIELD_ACCESS_LEVEL = "fieldAccessLevel";
47    public static final String QUALIFICATION_SCREEN_COMPONENT = "screenComponent";
48    public static final String QUALIFICATION_SECTION_ID = "sectionId";
49    public static final String DESCEND_HIERARCHY = "descendHierarchy";
50    public static final String KS_REFERENCE_TYPE_KEY = "ksReferenceTypeKey";
51   
52    protected String dataId;
53    protected String org;
54    protected String department;
55    protected String college;
56    protected String division;
57   
58    protected String dtoName;
59    protected String dtoFieldKey;
60    protected String fieldAccessLevel;
61    protected String screenComponent;
62    protected String sectionId;
63    protected Boolean descendHierarchy;
64    protected String ksReferenceTypeKey;
65   
66    /**
67    * @return the dataId
68    */
 
69  0 toggle public String getDataId() {
70  0 return dataId;
71    }
72   
73    /**
74    * @param dataId the dataId to set
75    */
 
76  0 toggle public void setDataId(String dataId) {
77  0 this.dataId = dataId;
78    }
79   
80    /**
81    * @return the org
82    */
 
83  0 toggle public String getOrg() {
84  0 return org;
85    }
86   
87    /**
88    * @param org the org to set
89    */
 
90  0 toggle public void setOrg(String org) {
91  0 this.org = org;
92    }
93   
94    /**
95    * @return the department
96    */
 
97  0 toggle public String getDepartment() {
98  0 return department;
99    }
100   
101    /**
102    * @param department the department to set
103    */
 
104  0 toggle public void setDepartment(String department) {
105  0 this.department = department;
106    }
107   
108    /**
109    * @return the college
110    */
 
111  0 toggle public String getCollege() {
112  0 return college;
113    }
114   
115    /**
116    * @param college the college to set
117    */
 
118  0 toggle public void setCollege(String college) {
119  0 this.college = college;
120    }
121   
122    /**
123    * @return the division
124    */
 
125  0 toggle public String getDivision() {
126  0 return division;
127    }
128   
129    /**
130    * @param division the division to set
131    */
 
132  0 toggle public void setDivision(String division) {
133  0 this.division = division;
134    }
135   
136    /**
137    * @return the dtoName
138    */
 
139  0 toggle public String getDtoName() {
140  0 return dtoName;
141    }
142   
143    /**
144    * @param dtoName the dtoName to set
145    */
 
146  0 toggle public void setDtoName(String dtoName) {
147  0 this.dtoName = dtoName;
148    }
149   
150    /**
151    * @return the dtoFieldKey
152    */
 
153  0 toggle public String getDtoFieldKey() {
154  0 return dtoFieldKey;
155    }
156   
157    /**
158    * @param dtoFieldKey the dtoFieldKey to set
159    */
 
160  0 toggle public void setDtoFieldKey(String dtoFieldKey) {
161  0 this.dtoFieldKey = dtoFieldKey;
162    }
163   
164    /**
165    * @return the fieldAccessLevel
166    */
 
167  0 toggle public String getFieldAccessLevel() {
168  0 return fieldAccessLevel;
169    }
170   
171    /**
172    * @param fieldAccessLevel the fieldAccessLevel to set
173    */
 
174  0 toggle public void setFieldAccessLevel(String fieldAccessLevel) {
175  0 this.fieldAccessLevel = fieldAccessLevel;
176    }
177   
178    /**
179    * @return the screenComponent
180    */
 
181  0 toggle public String getScreenComponent() {
182  0 return screenComponent;
183    }
184   
185    /**
186    * @param screenComponent the screenComponent to set
187    */
 
188  0 toggle public void setScreenComponent(String screenComponent) {
189  0 this.screenComponent = screenComponent;
190    }
191   
192    /**
193    * @return the sectionId
194    */
 
195  0 toggle public String getSectionId() {
196  0 return sectionId;
197    }
198   
199    /**
200    * @param sectionId the sectionId to set
201    */
 
202  0 toggle public void setSectionId(String sectionId) {
203  0 this.sectionId = sectionId;
204    }
205   
206    /**
207    * Gets the descendHierarchy attribute.
208    *
209    * @return Returns the descendHierarchy.
210    */
 
211  0 toggle public Boolean isDescendHierarchy() {
212  0 return descendHierarchy;
213    }
214   
215    /**
216    * Sets the descendHierarchy attribute value.
217    *
218    * @param descendHierarchy The descendHierarchy to set.
219    */
 
220  0 toggle public void setDescendHierarchy(Boolean descendHierarchy) {
221  0 this.descendHierarchy = descendHierarchy;
222    }
223   
224    /**
225    * @return the ksReferenceTypeKey
226    */
 
227  0 toggle public String getKsReferenceTypeKey() {
228  0 return ksReferenceTypeKey;
229    }
230   
231    /**
232    * @param ksReferenceTypeKey the ksReferenceTypeKey to set
233    */
 
234  0 toggle public void setKsReferenceTypeKey(String ksReferenceTypeKey) {
235  0 this.ksReferenceTypeKey = ksReferenceTypeKey;
236    }
237   
 
238  0 toggle @Override
239    protected LinkedHashMap toStringMapper() {
240  0 LinkedHashMap m = new LinkedHashMap();
241  0 return m;
242    }
243   
244    }