Coverage Report - org.kuali.rice.kim.inquiry.RoleInquirableImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
RoleInquirableImpl
0%
0/22
0%
0/6
7
 
 1  
 /*
 2  
  * Copyright 2007-2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 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  
  * This is a description of what this class does - bhargavp don't forget to fill this in. 
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 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  
                     //((AnchorHtmlData)inqUrl).setHref("../kim/identityManagementRoleDocument.do?methodToCall=inquiry&command=initiate&docTypeName=IdentityManagementRoleDocument"+href.substring(idx1, idx2));
 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  
 }