View Javadoc

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      public String getDataId() {
70      	return dataId;
71      }
72  
73  	/**
74       * @param dataId the dataId to set
75       */
76      public void setDataId(String dataId) {
77      	this.dataId = dataId;
78      }
79  
80  	/**
81       * @return the org
82       */
83      public String getOrg() {
84      	return org;
85      }
86  
87  	/**
88       * @param org the org to set
89       */
90      public void setOrg(String org) {
91      	this.org = org;
92      }
93  
94  	/**
95       * @return the department
96       */
97      public String getDepartment() {
98      	return department;
99      }
100 
101 	/**
102      * @param department the department to set
103      */
104     public void setDepartment(String department) {
105     	this.department = department;
106     }
107 
108 	/**
109      * @return the college
110      */
111     public String getCollege() {
112     	return college;
113     }
114 
115 	/**
116      * @param college the college to set
117      */
118     public void setCollege(String college) {
119     	this.college = college;
120     }
121 
122 	/**
123      * @return the division
124      */
125     public String getDivision() {
126     	return division;
127     }
128 
129 	/**
130      * @param division the division to set
131      */
132     public void setDivision(String division) {
133     	this.division = division;
134     }
135 
136 	/**
137      * @return the dtoName
138      */
139     public String getDtoName() {
140     	return dtoName;
141     }
142 
143 	/**
144      * @param dtoName the dtoName to set
145      */
146     public void setDtoName(String dtoName) {
147     	this.dtoName = dtoName;
148     }
149 
150 	/**
151      * @return the dtoFieldKey
152      */
153     public String getDtoFieldKey() {
154     	return dtoFieldKey;
155     }
156 
157 	/**
158      * @param dtoFieldKey the dtoFieldKey to set
159      */
160     public void setDtoFieldKey(String dtoFieldKey) {
161     	this.dtoFieldKey = dtoFieldKey;
162     }
163 
164 	/**
165      * @return the fieldAccessLevel
166      */
167     public String getFieldAccessLevel() {
168     	return fieldAccessLevel;
169     }
170 
171 	/**
172      * @param fieldAccessLevel the fieldAccessLevel to set
173      */
174     public void setFieldAccessLevel(String fieldAccessLevel) {
175     	this.fieldAccessLevel = fieldAccessLevel;
176     }
177 
178 	/**
179      * @return the screenComponent
180      */
181     public String getScreenComponent() {
182     	return screenComponent;
183     }
184 
185 	/**
186      * @param screenComponent the screenComponent to set
187      */
188     public void setScreenComponent(String screenComponent) {
189     	this.screenComponent = screenComponent;
190     }
191 
192 	/**
193      * @return the sectionId
194      */
195     public String getSectionId() {
196     	return sectionId;
197     }
198 
199 	/**
200      * @param sectionId the sectionId to set
201      */
202     public void setSectionId(String sectionId) {
203     	this.sectionId = sectionId;
204     }
205 
206     /**
207      * Gets the descendHierarchy attribute.
208      * 
209      * @return Returns the descendHierarchy.
210      */
211     public Boolean isDescendHierarchy() {
212         return descendHierarchy;
213     }
214 
215     /**
216      * Sets the descendHierarchy attribute value.
217      * 
218      * @param descendHierarchy The descendHierarchy to set.
219      */
220     public void setDescendHierarchy(Boolean descendHierarchy) {
221         this.descendHierarchy = descendHierarchy;
222     }
223 
224     /**
225      * @return the ksReferenceTypeKey
226      */
227     public String getKsReferenceTypeKey() {
228         return ksReferenceTypeKey;
229     }
230 
231     /**
232      * @param ksReferenceTypeKey the ksReferenceTypeKey to set
233      */
234     public void setKsReferenceTypeKey(String ksReferenceTypeKey) {
235         this.ksReferenceTypeKey = ksReferenceTypeKey;
236     }
237 
238     @Override
239     protected LinkedHashMap toStringMapper() {
240         LinkedHashMap m = new LinkedHashMap();
241         return m;
242     }
243 
244 }