1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.document; |
17 | |
|
18 | |
import java.util.List; |
19 | |
import java.util.Map; |
20 | |
|
21 | |
import org.apache.commons.lang.StringUtils; |
22 | |
import org.kuali.rice.kim.bo.impl.KimAttributes; |
23 | |
import org.kuali.rice.kim.bo.types.dto.AttributeDefinitionMap; |
24 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeInfo; |
25 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
26 | |
import org.kuali.rice.kim.service.support.KimTypeService; |
27 | |
import org.kuali.rice.kim.util.KimCommonUtils; |
28 | |
import org.kuali.rice.kim.util.KimConstants; |
29 | |
import org.kuali.rice.kns.datadictionary.AttributeDefinition; |
30 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
31 | |
import org.kuali.rice.kns.service.SequenceAccessorService; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | 0 | public class IdentityManagementTypeAttributeTransactionalDocument extends IdentityManagementKimDocument { |
41 | |
|
42 | |
protected static final long serialVersionUID = -9064436454008712125L; |
43 | |
|
44 | |
protected transient KimTypeService kimTypeService; |
45 | |
protected KimTypeInfo kimType; |
46 | |
protected List<? extends KimAttributes> attributes; |
47 | |
|
48 | |
protected transient AttributeDefinitionMap definitions; |
49 | |
protected transient Map<String,Object> attributeEntry; |
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
public List<? extends KimAttributes> getAttributes() { |
55 | 0 | return this.attributes; |
56 | |
} |
57 | |
|
58 | |
|
59 | |
|
60 | |
public void setAttributes(List<? extends KimAttributes> attributes) { |
61 | 0 | this.attributes = attributes; |
62 | 0 | } |
63 | |
|
64 | |
|
65 | |
|
66 | |
public KimTypeInfo getKimType() { |
67 | 0 | return this.kimType; |
68 | |
} |
69 | |
|
70 | |
|
71 | |
|
72 | |
public void setKimType(KimTypeInfo kimType) { |
73 | 0 | this.kimType = kimType; |
74 | 0 | } |
75 | |
|
76 | |
public Map<String,Object> getAttributeEntry() { |
77 | 0 | if(attributeEntry==null || attributeEntry.isEmpty()) |
78 | 0 | attributeEntry = KIMServiceLocator.getUiDocumentService().getAttributeEntries(getDefinitions()); |
79 | 0 | return attributeEntry; |
80 | |
} |
81 | |
|
82 | |
public String getCommaDelimitedAttributesLabels(String commaDelimitedAttributesNamesList){ |
83 | 0 | String[] names = StringUtils.splitByWholeSeparator(commaDelimitedAttributesNamesList, KimConstants.KimUIConstants.COMMA_SEPARATOR); |
84 | 0 | StringBuffer commaDelimitedAttributesLabels = new StringBuffer(); |
85 | 0 | for(String name: names){ |
86 | 0 | commaDelimitedAttributesLabels.append(getAttributeEntry().get(name.trim())+KimConstants.KimUIConstants.COMMA_SEPARATOR); |
87 | |
} |
88 | 0 | if(commaDelimitedAttributesLabels.toString().endsWith(KimConstants.KimUIConstants.COMMA_SEPARATOR)) |
89 | 0 | commaDelimitedAttributesLabels.delete(commaDelimitedAttributesLabels.length()-KimConstants.KimUIConstants.COMMA_SEPARATOR.length(), commaDelimitedAttributesLabels.length()); |
90 | 0 | return commaDelimitedAttributesLabels.toString(); |
91 | |
} |
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
public AttributeDefinitionMap getDefinitions() { |
99 | 0 | if (definitions == null || definitions.isEmpty()) { |
100 | 0 | KimTypeService kimTypeService = getKimTypeService(getKimType()); |
101 | 0 | if(kimTypeService!=null) |
102 | 0 | this.definitions = kimTypeService.getAttributeDefinitions(getKimType().getKimTypeId()); |
103 | |
} |
104 | 0 | return this.definitions; |
105 | |
} |
106 | |
|
107 | |
public AttributeDefinitionMap getDefinitionsKeyedByAttributeName() { |
108 | 0 | AttributeDefinitionMap definitionsKeyedBySortCode = getDefinitions(); |
109 | 0 | AttributeDefinitionMap returnValue = new AttributeDefinitionMap(); |
110 | 0 | if (definitionsKeyedBySortCode != null) { |
111 | 0 | for (AttributeDefinition definition : definitionsKeyedBySortCode.values()) { |
112 | 0 | returnValue.put(definition.getName(), definition); |
113 | |
} |
114 | |
} |
115 | 0 | return returnValue; |
116 | |
} |
117 | |
|
118 | |
public void setDefinitions(AttributeDefinitionMap definitions) { |
119 | 0 | this.definitions = definitions; |
120 | 0 | } |
121 | |
|
122 | |
protected KimTypeService getKimTypeService(KimTypeInfo kimType){ |
123 | 0 | if( kimTypeService==null){ |
124 | 0 | kimTypeService = KimCommonUtils.getKimTypeService(kimType); |
125 | |
} |
126 | 0 | return kimTypeService; |
127 | |
} |
128 | |
|
129 | |
protected SequenceAccessorService getSequenceAccessorService(){ |
130 | 0 | if(this.sequenceAccessorService==null){ |
131 | 0 | this.sequenceAccessorService = KNSServiceLocator.getSequenceAccessorService(); |
132 | |
} |
133 | 0 | return this.sequenceAccessorService; |
134 | |
} |
135 | |
|
136 | |
} |