1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.inquiry; |
17 | |
|
18 | |
import org.kuali.rice.core.impl.namespace.NamespaceBo; |
19 | |
import org.kuali.rice.kim.bo.impl.RoleImpl; |
20 | |
import org.kuali.rice.kim.bo.types.impl.KimTypeImpl; |
21 | |
import org.kuali.rice.kim.lookup.RoleLookupableHelperServiceImpl; |
22 | |
import org.kuali.rice.kim.util.KimConstants; |
23 | |
import org.kuali.rice.kns.bo.BusinessObject; |
24 | |
import org.kuali.rice.kns.inquiry.KualiInquirableImpl; |
25 | |
import org.kuali.rice.kns.lookup.HtmlData; |
26 | |
import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData; |
27 | |
import org.kuali.rice.kns.util.ObjectUtils; |
28 | |
|
29 | |
import java.util.ArrayList; |
30 | |
import java.util.Collections; |
31 | |
import java.util.List; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | 0 | public class RoleInquirableImpl extends KualiInquirableImpl { |
40 | |
|
41 | 0 | protected final String ROLE_NAME = "roleName"; |
42 | 0 | protected final String ROLE_ID = "roleId"; |
43 | 0 | protected final String NAMESPACE_CODE = "namespaceCode"; |
44 | |
|
45 | |
@Override |
46 | |
public HtmlData getInquiryUrl(BusinessObject businessObject, String attributeName, boolean forceInquiry) { |
47 | 0 | if(ROLE_NAME.equals(attributeName)){ |
48 | 0 | List<String> primaryKeys = new ArrayList<String>(); |
49 | 0 | primaryKeys.add(ROLE_ID); |
50 | |
|
51 | 0 | String href = (getInquiryUrlForPrimaryKeys(RoleImpl.class, businessObject, primaryKeys, null)).getHref(); |
52 | 0 | AnchorHtmlData htmlData = new AnchorHtmlData(); |
53 | 0 | htmlData.setHref(RoleLookupableHelperServiceImpl.getCustomRoleInquiryHref(href)); |
54 | 0 | return htmlData; |
55 | 0 | } else if(NAMESPACE_CODE.equals(attributeName)){ |
56 | 0 | List<String> primaryKeys = new ArrayList<String>(); |
57 | 0 | primaryKeys.add("code"); |
58 | 0 | NamespaceBo parameterNamespace = new NamespaceBo(); |
59 | 0 | parameterNamespace.setCode((String)ObjectUtils.getPropertyValue(businessObject, attributeName)); |
60 | 0 | return getInquiryUrlForPrimaryKeys(NamespaceBo.class, parameterNamespace, primaryKeys, null); |
61 | 0 | } else if("kimRoleType.name".equals(attributeName)){ |
62 | 0 | KimTypeImpl kimType = new KimTypeImpl(); |
63 | 0 | kimType.setKimTypeId( ((RoleImpl)businessObject).getKimTypeId() ); |
64 | 0 | return getInquiryUrlForPrimaryKeys(KimTypeImpl.class, kimType, Collections.singletonList( KimConstants.PrimaryKeyConstants.KIM_TYPE_ID ), null); |
65 | |
} |
66 | |
|
67 | 0 | return super.getInquiryUrl(businessObject, attributeName, forceInquiry); |
68 | |
} |
69 | |
|
70 | |
} |