Coverage Report - org.kuali.rice.kns.inquiry.KualiInquirableImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KualiInquirableImpl
0%
0/209
0%
0/116
3.129
 
 1  
 /*
 2  
  * Copyright 2006-2011 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  
 
 17  
 package org.kuali.rice.kns.inquiry;
 18  
 
 19  
 import org.apache.commons.collections.BidiMap;
 20  
 import org.apache.commons.collections.bidimap.DualHashBidiMap;
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.core.api.config.property.ConfigurationService;
 23  
 import org.kuali.rice.core.api.encryption.EncryptionService;
 24  
 import org.kuali.rice.core.api.services.CoreApiServiceLocator;
 25  
 import org.kuali.rice.core.web.format.Formatter;
 26  
 import org.kuali.rice.kns.bo.BusinessObject;
 27  
 import org.kuali.rice.kns.bo.BusinessObjectRelationship;
 28  
 import org.kuali.rice.kns.bo.DocumentHeader;
 29  
 import org.kuali.rice.kns.bo.ExternalizableBusinessObject;
 30  
 import org.kuali.rice.kns.datadictionary.AttributeSecurity;
 31  
 import org.kuali.rice.kns.datadictionary.InquirySectionDefinition;
 32  
 import org.kuali.rice.kns.lookup.CollectionIncomplete;
 33  
 import org.kuali.rice.kns.lookup.HtmlData;
 34  
 import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
 35  
 import org.kuali.rice.kns.lookup.LookupUtils;
 36  
 import org.kuali.rice.kns.service.BusinessObjectDictionaryService;
 37  
 import org.kuali.rice.kns.service.BusinessObjectMetaDataService;
 38  
 import org.kuali.rice.kns.service.BusinessObjectService;
 39  
 import org.kuali.rice.kns.service.DataDictionaryService;
 40  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 41  
 import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
 42  
 import org.kuali.rice.kns.service.LookupService;
 43  
 import org.kuali.rice.kns.service.ModuleService;
 44  
 import org.kuali.rice.kns.service.PersistenceStructureService;
 45  
 import org.kuali.rice.kns.util.ExternalizableBusinessObjectUtils;
 46  
 import org.kuali.rice.kns.util.GlobalVariables;
 47  
 import org.kuali.rice.kns.util.InactiveRecordsHidingUtils;
 48  
 import org.kuali.rice.kns.util.KNSConstants;
 49  
 import org.kuali.rice.kns.util.ObjectUtils;
 50  
 import org.kuali.rice.kns.util.UrlFactory;
 51  
 import org.kuali.rice.kns.web.ui.Section;
 52  
 import org.kuali.rice.kns.web.ui.SectionBridge;
 53  
 
 54  
 import java.security.GeneralSecurityException;
 55  
 import java.util.ArrayList;
 56  
 import java.util.Collection;
 57  
 import java.util.Collections;
 58  
 import java.util.HashMap;
 59  
 import java.util.Iterator;
 60  
 import java.util.List;
 61  
 import java.util.Map;
 62  
 import java.util.Properties;
 63  
 
 64  
 /**
 65  
  * Kuali inquirable implementation. Implements methods necessary to retrieve the business object and render the ui.
 66  
  *
 67  
  * NOTE: this class is not thread safe.  When using this class or any subclasses in Spring, make sure that this is not a singleton service, or
 68  
  * serious errors may occur.
 69  
  */
 70  
 public class KualiInquirableImpl implements Inquirable {
 71  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(KualiInquirableImpl.class);
 72  
 
 73  
     protected LookupService lookupService;
 74  
     protected BusinessObjectDictionaryService businessObjectDictionaryService;
 75  
     protected BusinessObjectMetaDataService businessObjectMetaDataService;
 76  
     protected PersistenceStructureService persistenceStructureService;
 77  
     protected DataDictionaryService dataDictionaryService;
 78  
     protected EncryptionService encryptionService;
 79  
     protected ConfigurationService kualiConfigurationService;
 80  
     protected static BusinessObjectService businessObjectService;
 81  
 
 82  
     protected Class businessObjectClass;
 83  
 
 84  
     protected Map<String, Boolean> inactiveRecordDisplay;
 85  
 
 86  
     /**
 87  
      * A list that can be used to define classes that are superclasses or superinterfaces of kuali objects where those
 88  
      * objects' inquiry URLs need to use the name of the superclass or superinterface as the business object class attribute
 89  
      * (see {@link RiceConstants#BUSINESS_OBJECT_CLASS_ATTRIBUTE)
 90  
      */
 91  0
     public static List<Class> SUPER_CLASS_TRANSLATOR_LIST = new ArrayList<Class>();
 92  
     public static final String INQUIRY_TITLE_PREFIX = "title.inquiry.url.value.prependtext";
 93  
 
 94  
     /**
 95  
      * Default constructor, initializes services from spring
 96  
      */
 97  0
     public KualiInquirableImpl() {
 98  0
         inactiveRecordDisplay = new HashMap<String, Boolean>();
 99  0
     }
 100  
 
 101  
     /**
 102  
      * Return a business object by searching with map, the map keys should be a property name of the business object, with the map
 103  
      * value as the value to search for.
 104  
      */
 105  
     public BusinessObject getBusinessObject(Map fieldValues) {
 106  0
         if (getBusinessObjectClass() == null) {
 107  0
             LOG.error("Business object class not set in inquirable.");
 108  0
             throw new RuntimeException("Business object class not set in inquirable.");
 109  
         }
 110  
 
 111  0
         CollectionIncomplete searchResults = null;
 112  0
                 ModuleService moduleService =
 113  
                         KNSServiceLocatorWeb.getKualiModuleService().getResponsibleModuleService(getBusinessObjectClass());
 114  0
                 if (moduleService != null && moduleService.isExternalizable(getBusinessObjectClass())) {
 115  0
                         BusinessObject bo = moduleService.getExternalizableBusinessObject(getBusinessObjectClass(), fieldValues);
 116  0
                         if(bo!=null) {
 117  0
                                 ArrayList list = new ArrayList( 1 );
 118  0
                                 list.add( bo );
 119  0
                                 searchResults = new CollectionIncomplete(list, 1L);
 120  
                         }
 121  0
                 } else {
 122  
                         // CHECK THIS: If this is to get a single BO, why using the lookup service?
 123  0
                         searchResults = (CollectionIncomplete) getLookupService().findCollectionBySearch(getBusinessObjectClass(), fieldValues);
 124  
                 }
 125  0
         BusinessObject foundObject = null;
 126  0
         if (searchResults != null && searchResults.size() > 0) {
 127  0
             foundObject = (BusinessObject) searchResults.get(0);
 128  
         }
 129  0
         return foundObject;
 130  
     }
 131  
 
 132  
 
 133  
     /**
 134  
      * Objects extending KualiInquirableBase must specify the Section objects used to display the inquiry result.
 135  
      */
 136  
     public List<Section> getSections(BusinessObject bo) {
 137  
 
 138  0
         List<Section> sections = new ArrayList<Section>();
 139  0
         if (getBusinessObjectClass() == null) {
 140  0
             LOG.error("Business object class not set in inquirable.");
 141  0
             throw new RuntimeException("Business object class not set in inquirable.");
 142  
         }
 143  
 
 144  0
         InquiryRestrictions inquiryRestrictions = KNSServiceLocatorWeb.getBusinessObjectAuthorizationService().getInquiryRestrictions(bo, GlobalVariables.getUserSession().getPerson());
 145  
 
 146  0
         Collection<InquirySectionDefinition> inquirySections = getBusinessObjectDictionaryService().getInquirySections(getBusinessObjectClass());
 147  0
         for (Iterator<InquirySectionDefinition> iter = inquirySections.iterator(); iter.hasNext();) {
 148  0
             InquirySectionDefinition inquirySection = iter.next();
 149  0
             if (!inquiryRestrictions.isHiddenSectionId(inquirySection.getId())) {
 150  0
                     Section section = SectionBridge.toSection(this, inquirySection, bo, inquiryRestrictions);
 151  0
                     sections.add(section);
 152  
             }
 153  0
         }
 154  
 
 155  0
         return sections;
 156  
     }
 157  
 
 158  
     /**
 159  
      * Helper method to build an inquiry url for a result field.
 160  
      *
 161  
      * @param bo the business object instance to build the urls for
 162  
      * @param propertyName the property which links to an inquirable
 163  
      * @return String url to inquiry
 164  
      */
 165  
     public HtmlData getInquiryUrl(BusinessObject businessObject, String attributeName, boolean forceInquiry) {
 166  0
         Properties parameters = new Properties();
 167  0
         AnchorHtmlData hRef = new AnchorHtmlData(KNSConstants.EMPTY_STRING, KNSConstants.EMPTY_STRING);
 168  0
         parameters.put(KNSConstants.DISPATCH_REQUEST_PARAMETER, "start");
 169  
 
 170  0
         Class inquiryBusinessObjectClass = null;
 171  0
         String attributeRefName = "";
 172  0
         boolean isPkReference = false;
 173  
 
 174  0
         boolean doesNestedReferenceHaveOwnPrimitiveReference = false;
 175  0
         BusinessObject nestedBusinessObject = null;
 176  
 
 177  0
         Class businessObjectClass = ObjectUtils.materializeClassForProxiedObject(businessObject);
 178  0
         if (attributeName.equals(getBusinessObjectDictionaryService().getTitleAttribute(businessObjectClass))) {
 179  0
                 inquiryBusinessObjectClass = businessObjectClass;
 180  0
             isPkReference = true;
 181  
         }
 182  
         else {
 183  0
             if (ObjectUtils.isNestedAttribute(attributeName)) {
 184  
                 // if we have a reference object, we should determine if we should either provide an inquiry link to
 185  
                 // the reference object itself, or some other nested primitive.
 186  
 
 187  
                 // for example, if the attribute is "referenceObject.someAttribute", and there is no primitive reference for
 188  
                 // "someAttribute", then an inquiry link is provided to the "referenceObject".  If it does have a primitive reference, then
 189  
                 // the inquiry link is directed towards it instead
 190  0
                 String nestedReferenceName = ObjectUtils.getNestedAttributePrefix(attributeName);
 191  0
                 Object nestedReferenceObject = ObjectUtils.getNestedValue(businessObject, nestedReferenceName);
 192  
 
 193  0
                 if (ObjectUtils.isNotNull(nestedReferenceObject) && nestedReferenceObject instanceof BusinessObject) {
 194  0
                     nestedBusinessObject = (BusinessObject) nestedReferenceObject;
 195  0
                     String nestedAttributePrimitive = ObjectUtils.getNestedAttributePrimitive(attributeName);
 196  0
                     Class nestedBusinessObjectClass = ObjectUtils.materializeClassForProxiedObject(nestedBusinessObject);
 197  
 
 198  0
                     if (nestedAttributePrimitive.equals(getBusinessObjectDictionaryService().getTitleAttribute(nestedBusinessObjectClass))) {
 199  
                             // we are going to inquiry the record that contains the attribute we're rendering an inquiry URL for
 200  0
                             inquiryBusinessObjectClass = nestedBusinessObjectClass;
 201  
                         // I know it's already set to false, just to show how this variable is set
 202  0
                         doesNestedReferenceHaveOwnPrimitiveReference = false;
 203  
                     }
 204  
                     else {
 205  0
                             Map primitiveReference = LookupUtils.getPrimitiveReference(nestedBusinessObject, nestedAttributePrimitive);
 206  0
                             if (primitiveReference != null && !primitiveReference.isEmpty()) {
 207  0
                                 attributeRefName = (String) primitiveReference.keySet().iterator().next();
 208  0
                                 inquiryBusinessObjectClass = (Class) primitiveReference.get(attributeRefName);
 209  0
                                 doesNestedReferenceHaveOwnPrimitiveReference = true;
 210  
                             }
 211  
                             else {
 212  
                                     // we are going to inquiry the record that contains the attribute we're rendering an inquiry URL for
 213  0
                                         inquiryBusinessObjectClass = ObjectUtils.materializeClassForProxiedObject(nestedBusinessObject);
 214  
                                 // I know it's already set to false, just to show how this variable is set
 215  0
                                 doesNestedReferenceHaveOwnPrimitiveReference = false;
 216  
                             }
 217  
                     }
 218  
                 }
 219  0
             }
 220  
             else {
 221  0
                 Map primitiveReference = LookupUtils.getPrimitiveReference(businessObject, attributeName);
 222  0
                 if (primitiveReference != null && !primitiveReference.isEmpty()) {
 223  0
                     attributeRefName = (String) primitiveReference.keySet().iterator().next();
 224  0
                     inquiryBusinessObjectClass = (Class) primitiveReference.get(attributeRefName);
 225  
                 }
 226  
             }
 227  
         }
 228  
 
 229  0
         if (inquiryBusinessObjectClass != null && DocumentHeader.class.isAssignableFrom(inquiryBusinessObjectClass)) {
 230  0
             String documentNumber = (String) ObjectUtils.getPropertyValue(businessObject, attributeName);
 231  0
             if (!StringUtils.isBlank(documentNumber)) {
 232  
                 // if NullPointerException on the following line, maybe the Spring bean wasn't injected w/ KualiConfigurationException, or if
 233  
                 // instances of a sub-class of this class are not Spring created, then override getKualiConfigurationService() in the subclass
 234  
                 // to return the configuration service from a Spring service locator (or set it).
 235  0
                 hRef.setHref(getKualiConfigurationService().getPropertyString(KNSConstants.WORKFLOW_URL_KEY) + KNSConstants.DOCHANDLER_DO_URL + documentNumber + KNSConstants.DOCHANDLER_URL_CHUNK);
 236  
             }
 237  0
             return hRef;
 238  
         }
 239  
 
 240  0
         if (inquiryBusinessObjectClass == null || getBusinessObjectDictionaryService().isInquirable(inquiryBusinessObjectClass) == null || !getBusinessObjectDictionaryService().isInquirable(inquiryBusinessObjectClass).booleanValue()) {
 241  0
             return hRef;
 242  
         }
 243  
 
 244  0
         synchronized (SUPER_CLASS_TRANSLATOR_LIST) {
 245  0
             for (Class clazz : SUPER_CLASS_TRANSLATOR_LIST) {
 246  0
                 if (clazz.isAssignableFrom(inquiryBusinessObjectClass)) {
 247  0
                     inquiryBusinessObjectClass = clazz;
 248  0
                     break;
 249  
                 }
 250  
             }
 251  0
         }
 252  
 
 253  0
         if (!inquiryBusinessObjectClass.isInterface() && ExternalizableBusinessObject.class.isAssignableFrom(inquiryBusinessObjectClass)) {
 254  0
                 inquiryBusinessObjectClass = ExternalizableBusinessObjectUtils.determineExternalizableBusinessObjectSubInterface(inquiryBusinessObjectClass);
 255  
         }
 256  
 
 257  0
         parameters.put(KNSConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, inquiryBusinessObjectClass.getName());
 258  
 
 259  
 
 260  
         // listPrimaryKeyFieldNames returns an unmodifiable list.  So a copy is necessary.
 261  0
         List<String> keys = new ArrayList<String>(getBusinessObjectMetaDataService().listPrimaryKeyFieldNames(inquiryBusinessObjectClass));
 262  
 
 263  0
         if (keys == null) {
 264  0
                 keys = Collections.emptyList();
 265  
         }
 266  
 
 267  0
         BusinessObjectRelationship businessObjectRelationship = null;
 268  
 
 269  0
         if(attributeRefName != null && !"".equals(attributeRefName)){
 270  0
                 businessObjectRelationship =
 271  
                             getBusinessObjectMetaDataService().getBusinessObjectRelationship(
 272  
                                             businessObject, attributeRefName);
 273  
 
 274  0
                     if (businessObjectRelationship != null && businessObjectRelationship.getParentToChildReferences() != null) {
 275  0
                             for (String targetNamePrimaryKey : businessObjectRelationship.getParentToChildReferences().values()) {
 276  0
                                     keys.add(targetNamePrimaryKey);
 277  
                             }
 278  
                     }
 279  
         }
 280  
         // build key value url parameters used to retrieve the business object
 281  0
         String keyName = null;
 282  0
         String keyConversion = null;
 283  0
         Map<String, String> fieldList = new HashMap<String,String>();
 284  0
         for (Iterator iter = keys.iterator(); iter.hasNext();) {
 285  0
             keyName = (String) iter.next();
 286  0
             keyConversion = keyName;
 287  0
             if (ObjectUtils.isNestedAttribute(attributeName)) {
 288  0
                 if (doesNestedReferenceHaveOwnPrimitiveReference) {
 289  0
                     String nestedAttributePrefix = ObjectUtils.getNestedAttributePrefix(attributeName);
 290  
                     //String foreignKeyFieldName = getBusinessObjectMetaDataService().getForeignKeyFieldName(
 291  
                     //        inquiryBusinessObjectClass.getClass(), attributeRefName, keyName);
 292  
 
 293  0
                     String foreignKeyFieldName = getBusinessObjectMetaDataService().getForeignKeyFieldName(
 294  
                                                                                     nestedBusinessObject.getClass(), attributeRefName, keyName);
 295  0
                     keyConversion = nestedAttributePrefix + "." + foreignKeyFieldName;
 296  0
                 }
 297  
                 else {
 298  0
                     keyConversion = ObjectUtils.getNestedAttributePrefix(attributeName) + "." + keyName;
 299  
                 }
 300  
             }
 301  
             else {
 302  0
                 if (isPkReference) {
 303  0
                     keyConversion = keyName;
 304  
                 }
 305  0
                 else if (businessObjectRelationship != null) {
 306  
                         //Using BusinessObjectMetaDataService instead of PersistenceStructureService
 307  
                         //since otherwise, relationship information from datadictionary is not used at all
 308  
                         //Also, BOMDS.getBusinessObjectRelationship uses PersistenceStructureService,
 309  
                         //so both datadictionary and the persistance layer get covered
 310  
                         /*
 311  
                         BusinessObjectRelationship businessObjectRelationship =
 312  
                                 getBusinessObjectMetaDataService().getBusinessObjectRelationship(
 313  
                                                 businessObject, attributeRefName);
 314  
                                                 */
 315  0
                         BidiMap bidiMap = new DualHashBidiMap(businessObjectRelationship.getParentToChildReferences());
 316  0
                         keyConversion = (String)bidiMap.getKey(keyName);
 317  
                     //keyConversion = getPersistenceStructureService().getForeignKeyFieldName(businessObject.getClass(), attributeRefName, keyName);
 318  
                 }
 319  
             }
 320  0
             Object keyValue = null;
 321  0
             if (keyConversion != null) {
 322  0
                 keyValue = ObjectUtils.getPropertyValue(businessObject, keyConversion);
 323  
             }
 324  
 
 325  0
             if (keyValue == null) {
 326  0
                 keyValue = "";
 327  0
             } else if (keyValue instanceof java.sql.Date) { //format the date for passing in url
 328  0
                 if (Formatter.findFormatter(keyValue.getClass()) != null) {
 329  0
                     Formatter formatter = Formatter.getFormatter(keyValue.getClass());
 330  0
                     keyValue = (String) formatter.format(keyValue);
 331  0
                 }
 332  
             } else {
 333  0
                 keyValue = keyValue.toString();
 334  
             }
 335  
 
 336  
             // Encrypt value if it is a field that has restriction that prevents a value from being shown to user,
 337  
             // because we don't want the browser history to store the restricted attribute's value in the URL
 338  0
             AttributeSecurity attributeSecurity = KNSServiceLocatorWeb.getDataDictionaryService().getAttributeSecurity(businessObject.getClass().getName(), keyName);
 339  0
             if(attributeSecurity != null && attributeSecurity.hasRestrictionThatRemovesValueFromUI()){
 340  
                     try {
 341  0
                     keyValue = getEncryptionService().encrypt(keyValue);
 342  
                 }
 343  0
                 catch (GeneralSecurityException e) {
 344  0
                     LOG.error("Exception while trying to encrypted value for inquiry framework.", e);
 345  0
                     throw new RuntimeException(e);
 346  0
                 }
 347  
             }
 348  
 
 349  0
             parameters.put(keyName, keyValue);
 350  0
             fieldList.put(keyName, keyValue.toString());
 351  0
         }
 352  
 
 353  0
         return getHyperLink(inquiryBusinessObjectClass, fieldList, UrlFactory.parameterizeUrl(KNSConstants.INQUIRY_ACTION, parameters));
 354  
     }
 355  
 
 356  
     protected AnchorHtmlData getHyperLink(Class inquiryClass, Map<String,String> fieldList, String inquiryUrl){
 357  0
             AnchorHtmlData a = new AnchorHtmlData(inquiryUrl, KNSConstants.EMPTY_STRING);
 358  0
             a.setTitle(HtmlData.getTitleText(this.createTitleText(inquiryClass), inquiryClass, fieldList));
 359  0
             return a;
 360  
     }
 361  
     
 362  
     /**
 363  
      * creates the title text for a given BO
 364  
      * 
 365  
      * @param boClass the BO class
 366  
      * @return the title text
 367  
      */
 368  
     protected String createTitleText(Class<? extends BusinessObject> boClass) {
 369  0
             String titleText = "";
 370  
             
 371  0
             final String titlePrefixProp = getKualiConfigurationService().getPropertyString(
 372  
                 INQUIRY_TITLE_PREFIX);
 373  0
             if (StringUtils.isNotBlank(titlePrefixProp)) {
 374  0
                     titleText += titlePrefixProp + " ";
 375  
             }
 376  
             
 377  0
             final String objectLabel = getDataDictionaryService().getDataDictionary().getBusinessObjectEntry(boClass.getName()).getObjectLabel();
 378  0
             if (StringUtils.isNotBlank(objectLabel)) {
 379  0
                     titleText += objectLabel + " ";
 380  
             }
 381  
             
 382  0
             return titleText;
 383  
     }
 384  
 
 385  
     public void addAdditionalSections(List columns, BusinessObject bo) {
 386  0
     }
 387  
 
 388  
     /**
 389  
      * @see org.kuali.rice.kns.inquiry.Inquirable#getHtmlMenuBar()
 390  
      */
 391  
     public String getHtmlMenuBar() {
 392  
         // TODO: replace with inquiry menu bar
 393  0
         return getBusinessObjectDictionaryService().getLookupMenuBar(getBusinessObjectClass());
 394  
     }
 395  
 
 396  
     /**
 397  
      * @see org.kuali.rice.kns.inquiry.Inquirable#getTitle()
 398  
      */
 399  
     public String getTitle() {
 400  0
         return getBusinessObjectDictionaryService().getInquiryTitle(getBusinessObjectClass());
 401  
     }
 402  
 
 403  
     /**
 404  
      * @return Returns the businessObjectClass.
 405  
      */
 406  
     public Class getBusinessObjectClass() {
 407  0
         return businessObjectClass;
 408  
     }
 409  
 
 410  
     /**
 411  
      * @param businessObjectClass The businessObjectClass to set.
 412  
      */
 413  
     public void setBusinessObjectClass(Class businessObjectClass) {
 414  0
         this.businessObjectClass = businessObjectClass;
 415  0
     }
 416  
 
 417  
     /**
 418  
      * @see org.kuali.rice.kns.inquiry.Inquirable#getInactiveRecordDisplay()
 419  
      */
 420  
     public Map<String, Boolean> getInactiveRecordDisplay() {
 421  0
         return inactiveRecordDisplay;
 422  
 }
 423  
     /**
 424  
      * @see org.kuali.rice.kns.inquiry.Inquirable#getShowInactiveRecords(java.lang.String)
 425  
      */
 426  
     public boolean getShowInactiveRecords(String collectionName) {
 427  0
         return InactiveRecordsHidingUtils.getShowInactiveRecords(inactiveRecordDisplay, collectionName);
 428  
     }
 429  
 
 430  
     /**
 431  
      * @see org.kuali.rice.kns.inquiry.Inquirable#setShowInactiveRecords(java.lang.String, boolean)
 432  
      */
 433  
     public void setShowInactiveRecords(String collectionName, boolean showInactive) {
 434  0
         InactiveRecordsHidingUtils.setShowInactiveRecords(inactiveRecordDisplay, collectionName, showInactive);
 435  0
     }
 436  
 
 437  
     public LookupService getLookupService() {
 438  0
         if ( lookupService == null ) {
 439  0
             lookupService = KNSServiceLocatorWeb.getLookupService();
 440  
         }
 441  0
         return lookupService;
 442  
     }
 443  
 
 444  
     public void setLookupService(LookupService lookupService) {
 445  0
         this.lookupService = lookupService;
 446  0
     }
 447  
 
 448  
     public BusinessObjectDictionaryService getBusinessObjectDictionaryService() {
 449  0
         if ( businessObjectDictionaryService == null ) {
 450  0
             businessObjectDictionaryService = KNSServiceLocatorWeb.getBusinessObjectDictionaryService();
 451  
         }
 452  0
         return businessObjectDictionaryService;
 453  
     }
 454  
 
 455  
     public void setBusinessObjectDictionaryService(BusinessObjectDictionaryService businessObjectDictionaryService) {
 456  0
         this.businessObjectDictionaryService = businessObjectDictionaryService;
 457  0
     }
 458  
 
 459  
     public PersistenceStructureService getPersistenceStructureService() {
 460  0
         if ( persistenceStructureService == null ) {
 461  0
             persistenceStructureService = KNSServiceLocator.getPersistenceStructureService();
 462  
         }
 463  0
         return this.persistenceStructureService;
 464  
     }
 465  
 
 466  
     public void setPersistenceStructureService(PersistenceStructureService persistenceStructureService) {
 467  0
         this.persistenceStructureService = persistenceStructureService;
 468  0
     }
 469  
 
 470  
     public DataDictionaryService getDataDictionaryService() {
 471  0
         if ( dataDictionaryService == null ) {
 472  0
             dataDictionaryService = KNSServiceLocatorWeb.getDataDictionaryService();
 473  
         }
 474  0
         return this.dataDictionaryService;
 475  
     }
 476  
 
 477  
     public void setDataDictionaryService(DataDictionaryService dataDictionaryService) {
 478  0
         this.dataDictionaryService = dataDictionaryService;
 479  0
     }
 480  
 
 481  
     public EncryptionService getEncryptionService() {
 482  0
         if ( encryptionService == null ) {
 483  0
             encryptionService = CoreApiServiceLocator.getEncryptionService();
 484  
         }
 485  0
         return this.encryptionService;
 486  
     }
 487  
 
 488  
     public void setEncryptionService(EncryptionService encryptionService) {
 489  0
         this.encryptionService = encryptionService;
 490  0
     }
 491  
 
 492  
     /**
 493  
      * Retrieves the {@link org.kuali.rice.core.api.config.property.ConfigurationService}.  In the event that instances of this class are not created as Spring beans,
 494  
      * override this method to return an instance from the service locator.
 495  
      *
 496  
      * @return
 497  
      */
 498  
     protected ConfigurationService getKualiConfigurationService() {
 499  0
                 if (kualiConfigurationService == null) {
 500  0
                         kualiConfigurationService = KNSServiceLocator.getKualiConfigurationService();
 501  
                 }
 502  0
         return this.kualiConfigurationService;
 503  
     }
 504  
 
 505  
     public void setKualiConfigurationService(ConfigurationService kualiConfigurationService) {
 506  0
         this.kualiConfigurationService = kualiConfigurationService;
 507  0
     }
 508  
 
 509  
         public BusinessObjectMetaDataService getBusinessObjectMetaDataService() {
 510  0
                 if (businessObjectMetaDataService == null) {
 511  0
                         businessObjectMetaDataService = KNSServiceLocatorWeb.getBusinessObjectMetaDataService();
 512  
                 }
 513  0
                 return this.businessObjectMetaDataService;
 514  
         }
 515  
 
 516  
         public void setBusinessObjectMetaDataService(
 517  
                         BusinessObjectMetaDataService businessObjectMetaDataService) {
 518  0
                 this.businessObjectMetaDataService = businessObjectMetaDataService;
 519  0
         }
 520  
 
 521  
         public BusinessObjectService getBusinessObjectService() {
 522  0
                 if (businessObjectService == null ) {
 523  0
                         businessObjectService = KNSServiceLocator.getBusinessObjectService();
 524  
                 }
 525  0
                 return businessObjectService;
 526  
         }
 527  
 
 528  
     protected AnchorHtmlData getInquiryUrlForPrimaryKeys(
 529  
                     Class clazz, Object businessObject, List<String> primaryKeys, String displayText){
 530  0
             if(businessObject==null)
 531  0
                     return new AnchorHtmlData(KNSConstants.EMPTY_STRING, KNSConstants.EMPTY_STRING);
 532  
 
 533  0
         Properties parameters = new Properties();
 534  0
         parameters.put(KNSConstants.DISPATCH_REQUEST_PARAMETER, KNSConstants.START_METHOD);
 535  0
         parameters.put(KNSConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, clazz.getName());
 536  
 
 537  
         String titleAttributeValue;
 538  0
         Map<String, String> fieldList = new HashMap<String, String>();
 539  0
         for(String primaryKey: primaryKeys){
 540  0
                 titleAttributeValue = (String)ObjectUtils.getPropertyValue(businessObject, primaryKey);
 541  0
             parameters.put(primaryKey, titleAttributeValue);
 542  0
             fieldList.put(primaryKey, titleAttributeValue);
 543  
         }
 544  0
         if(StringUtils.isEmpty(displayText))
 545  0
                 return getHyperLink(clazz, fieldList, UrlFactory.parameterizeUrl(KNSConstants.INQUIRY_ACTION, parameters));
 546  
         else
 547  0
                 return getHyperLink(clazz, fieldList, UrlFactory.parameterizeUrl(KNSConstants.INQUIRY_ACTION, parameters), displayText);
 548  
     }
 549  
 
 550  
 
 551  
     protected AnchorHtmlData getHyperLink(Class inquiryClass, Map<String,String> fieldList, String inquiryUrl, String displayText){
 552  0
             AnchorHtmlData a = new AnchorHtmlData(inquiryUrl, KNSConstants.EMPTY_STRING, displayText);
 553  0
             a.setTitle(AnchorHtmlData.getTitleText(
 554  
                 getKualiConfigurationService().getPropertyString(
 555  
                         INQUIRY_TITLE_PREFIX) + " " +
 556  
                         getDataDictionaryService().getDataDictionary().getBusinessObjectEntry(inquiryClass.getName()).getObjectLabel()+
 557  
                         " ", inquiryClass, fieldList));
 558  0
             return a;
 559  
     }
 560  
 
 561  
 
 562  
 }