Clover Coverage Report - KS LUM 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 06:51:52 EDT
../../../../../img/srcFileCovDistChart0.png 47% of files have more coverage
26   240   25   1.04
0   110   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_DIVISION_ID = "divisionId";
35    public static final String QUALIFICATION_COLLEGE_ID = "collegeId";
36    public static final String QUALIFICATION_ORG_ID = "orgId";
37   
38    public static final String QUALIFICATION_DATA_ID = "dataId";
39    public static final String QUALIFICATION_CLU_ID = "cluId";
40    public static final String QUALIFICATION_DTO_NAME = "dtoName";
41    public static final String QUALIFICATION_DTO_FIELD_KEY = "dtoFieldKey";
42    public static final String QUALIFICATION_FIELD_ACCESS_LEVEL = "fieldAccessLevel";
43    public static final String QUALIFICATION_SCREEN_COMPONENT = "screenComponent";
44    public static final String QUALIFICATION_SECTION_ID = "sectionId";
45    public static final String DESCEND_HIERARCHY = "descendHierarchy";
46    public static final String KS_REFERENCE_TYPE_KEY = "ksReferenceTypeKey";
47   
48    protected String dataId;
49    protected String org;
50    protected String department;
51    protected String college;
52    protected String division;
53   
54    protected String dtoName;
55    protected String dtoFieldKey;
56    protected String fieldAccessLevel;
57    protected String screenComponent;
58    protected String sectionId;
59    protected Boolean descendHierarchy;
60    protected String ksReferenceTypeKey;
61   
62    /**
63    * @return the dataId
64    */
 
65  0 toggle public String getDataId() {
66  0 return dataId;
67    }
68   
69    /**
70    * @param dataId the dataId to set
71    */
 
72  0 toggle public void setDataId(String dataId) {
73  0 this.dataId = dataId;
74    }
75   
76    /**
77    * @return the org
78    */
 
79  0 toggle public String getOrg() {
80  0 return org;
81    }
82   
83    /**
84    * @param org the org to set
85    */
 
86  0 toggle public void setOrg(String org) {
87  0 this.org = org;
88    }
89   
90    /**
91    * @return the department
92    */
 
93  0 toggle public String getDepartment() {
94  0 return department;
95    }
96   
97    /**
98    * @param department the department to set
99    */
 
100  0 toggle public void setDepartment(String department) {
101  0 this.department = department;
102    }
103   
104    /**
105    * @return the college
106    */
 
107  0 toggle public String getCollege() {
108  0 return college;
109    }
110   
111    /**
112    * @param college the college to set
113    */
 
114  0 toggle public void setCollege(String college) {
115  0 this.college = college;
116    }
117   
118    /**
119    * @return the division
120    */
 
121  0 toggle public String getDivision() {
122  0 return division;
123    }
124   
125    /**
126    * @param division the division to set
127    */
 
128  0 toggle public void setDivision(String division) {
129  0 this.division = division;
130    }
131   
132    /**
133    * @return the dtoName
134    */
 
135  0 toggle public String getDtoName() {
136  0 return dtoName;
137    }
138   
139    /**
140    * @param dtoName the dtoName to set
141    */
 
142  0 toggle public void setDtoName(String dtoName) {
143  0 this.dtoName = dtoName;
144    }
145   
146    /**
147    * @return the dtoFieldKey
148    */
 
149  0 toggle public String getDtoFieldKey() {
150  0 return dtoFieldKey;
151    }
152   
153    /**
154    * @param dtoFieldKey the dtoFieldKey to set
155    */
 
156  0 toggle public void setDtoFieldKey(String dtoFieldKey) {
157  0 this.dtoFieldKey = dtoFieldKey;
158    }
159   
160    /**
161    * @return the fieldAccessLevel
162    */
 
163  0 toggle public String getFieldAccessLevel() {
164  0 return fieldAccessLevel;
165    }
166   
167    /**
168    * @param fieldAccessLevel the fieldAccessLevel to set
169    */
 
170  0 toggle public void setFieldAccessLevel(String fieldAccessLevel) {
171  0 this.fieldAccessLevel = fieldAccessLevel;
172    }
173   
174    /**
175    * @return the screenComponent
176    */
 
177  0 toggle public String getScreenComponent() {
178  0 return screenComponent;
179    }
180   
181    /**
182    * @param screenComponent the screenComponent to set
183    */
 
184  0 toggle public void setScreenComponent(String screenComponent) {
185  0 this.screenComponent = screenComponent;
186    }
187   
188    /**
189    * @return the sectionId
190    */
 
191  0 toggle public String getSectionId() {
192  0 return sectionId;
193    }
194   
195    /**
196    * @param sectionId the sectionId to set
197    */
 
198  0 toggle public void setSectionId(String sectionId) {
199  0 this.sectionId = sectionId;
200    }
201   
202    /**
203    * Gets the descendHierarchy attribute.
204    *
205    * @return Returns the descendHierarchy.
206    */
 
207  0 toggle public Boolean isDescendHierarchy() {
208  0 return descendHierarchy;
209    }
210   
211    /**
212    * Sets the descendHierarchy attribute value.
213    *
214    * @param descendHierarchy The descendHierarchy to set.
215    */
 
216  0 toggle public void setDescendHierarchy(Boolean descendHierarchy) {
217  0 this.descendHierarchy = descendHierarchy;
218    }
219   
220    /**
221    * @return the ksReferenceTypeKey
222    */
 
223  0 toggle public String getKsReferenceTypeKey() {
224  0 return ksReferenceTypeKey;
225    }
226   
227    /**
228    * @param ksReferenceTypeKey the ksReferenceTypeKey to set
229    */
 
230  0 toggle public void setKsReferenceTypeKey(String ksReferenceTypeKey) {
231  0 this.ksReferenceTypeKey = ksReferenceTypeKey;
232    }
233   
 
234  0 toggle @Override
235    protected LinkedHashMap toStringMapper() {
236  0 LinkedHashMap m = new LinkedHashMap();
237  0 return m;
238    }
239   
240    }