1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.datadictionary; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
import org.kuali.rice.kns.datadictionary.AttributeDefinition; |
21 | |
import org.kuali.rice.kns.datadictionary.DataObjectEntry; |
22 | |
import org.kuali.student.datadictionary.infc.AttributeDefinitionInfc; |
23 | |
import org.kuali.student.datadictionary.infc.DictionaryEntry; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | 0 | public class Student2RiceDictionaryEntryConverter { |
30 | |
|
31 | 0 | private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(Student2RiceDictionaryEntryConverter.class); |
32 | |
|
33 | |
public DataObjectEntry convert(DictionaryEntry student) { |
34 | 0 | DataObjectEntry rice = new DataObjectEntry (); |
35 | |
try { |
36 | 0 | rice.setObjectClass(Class.forName(student.getObjectClass())); |
37 | 0 | } catch (ClassNotFoundException ex) { |
38 | 0 | throw new IllegalArgumentException (student.getObjectClass(), ex); |
39 | 0 | } |
40 | 0 | rice.setName(student.getName()); |
41 | 0 | rice.setObjectLabel(student.getObjectLabel()); |
42 | 0 | rice.setObjectDescription(student.getObjectDescription()); |
43 | 0 | rice.setTitleAttribute(student.getTitleAttribute()); |
44 | 0 | rice.setPrimaryKeys(student.getPrimaryKeys()); |
45 | 0 | if (student.getAttributes() != null) { |
46 | 0 | List<AttributeDefinition> list = new ArrayList(student.getAttributes().size()); |
47 | 0 | for (AttributeDefinitionInfc ad : student.getAttributes()) { |
48 | 0 | list.add(new Student2RiceAttributeDefinitionConverter ().convert(ad)); |
49 | |
} |
50 | 0 | rice.setAttributes (list); |
51 | |
} |
52 | 0 | return rice; |
53 | |
} |
54 | |
} |