1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.impl.type; |
17 | |
|
18 | |
import org.kuali.rice.kim.util.KimConstants; |
19 | |
import org.kuali.rice.kns.inquiry.KualiInquirableImpl; |
20 | |
import org.kuali.rice.kns.lookup.HtmlData; |
21 | |
import org.kuali.rice.krad.bo.BusinessObject; |
22 | |
|
23 | |
import java.util.Collections; |
24 | |
|
25 | 0 | public class KimTypeInquirableImpl extends KualiInquirableImpl { |
26 | |
|
27 | 0 | protected final String KIM_TYPE_NAME = "name"; |
28 | |
|
29 | |
@Override |
30 | |
public HtmlData getInquiryUrl(BusinessObject businessObject, String attributeName, boolean forceInquiry) { |
31 | 0 | if(KIM_TYPE_NAME.equals(attributeName)){ |
32 | 0 | return getInquiryUrlForPrimaryKeys(KimTypeBo.class, businessObject, Collections.singletonList(KimConstants.PrimaryKeyConstants.KIM_TYPE_ID), null); |
33 | |
} |
34 | 0 | return super.getInquiryUrl(businessObject, attributeName, forceInquiry); |
35 | |
} |
36 | |
|
37 | |
} |