Coverage Report - org.kuali.rice.kns.datadictionary.DataDictionary
 
Classes in this File Line Coverage Branch Coverage Complexity
DataDictionary
0%
0/215
0%
0/102
3.633
 
 1  
 /*
 2  
  * Copyright 2005-2007 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.datadictionary;
 18  
 
 19  
 import java.beans.IntrospectionException;
 20  
 import java.beans.PropertyDescriptor;
 21  
 import java.io.File;
 22  
 import java.io.IOException;
 23  
 import java.util.ArrayList;
 24  
 import java.util.Collection;
 25  
 import java.util.HashMap;
 26  
 import java.util.List;
 27  
 import java.util.Map;
 28  
 import java.util.Set;
 29  
 import java.util.TreeMap;
 30  
 
 31  
 import org.apache.commons.lang.StringUtils;
 32  
 import org.apache.commons.logging.Log;
 33  
 import org.apache.commons.logging.LogFactory;
 34  
 import org.kuali.rice.core.util.ClassLoaderUtils;
 35  
 import org.kuali.rice.kns.bo.BusinessObject;
 36  
 import org.kuali.rice.kns.bo.PersistableBusinessObjectExtension;
 37  
 import org.kuali.rice.kns.datadictionary.exception.AttributeValidationException;
 38  
 import org.kuali.rice.kns.datadictionary.exception.CompletionException;
 39  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 40  
 import org.kuali.rice.kns.service.PersistenceStructureService;
 41  
 import org.kuali.rice.kns.util.ObjectUtils;
 42  
 import org.springframework.beans.factory.support.DefaultListableBeanFactory;
 43  
 import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
 44  
 import org.springframework.core.io.DefaultResourceLoader;
 45  
 import org.springframework.core.io.Resource;
 46  
 
 47  
 /**
 48  
  * Collection of named BusinessObjectEntry objects, each of which contains
 49  
  * information relating to the display, validation, and general maintenance of a
 50  
  * BusinessObject.
 51  
  * 
 52  
  * 
 53  
  */
 54  
 public class DataDictionary {
 55  
 
 56  0
     private DefaultListableBeanFactory ddBeans = new DefaultListableBeanFactory();
 57  0
     private XmlBeanDefinitionReader xmlReader = new XmlBeanDefinitionReader(ddBeans);
 58  
 
 59  
         // logger
 60  0
         private static final Log LOG = LogFactory.getLog(DataDictionary.class);
 61  
 
 62  
         /**
 63  
          * The encapsulation of DataDictionary indices
 64  
          */
 65  0
         private DataDictionaryIndex ddIndex = new DataDictionaryIndex(ddBeans);
 66  
 
 67  
         /**
 68  
          * The DataDictionaryMapper
 69  
          * The default mapper simply consults the initialized indices
 70  
          * on workflow document type
 71  
          */
 72  0
         private DataDictionaryMapper ddMapper = new DataDictionaryIndexMapper();
 73  
 
 74  0
         private List<String> configFileLocations = new ArrayList<String>();
 75  
 
 76  0
     public DataDictionary() { }
 77  
     
 78  
         public List<String> getConfigFileLocations() {
 79  0
         return this.configFileLocations;
 80  
     }
 81  
 
 82  
     public void setConfigFileLocations(List<String> configFileLocations) {
 83  0
         this.configFileLocations = configFileLocations;
 84  0
     }
 85  
     
 86  
     public void addConfigFileLocation( String location ) throws IOException {
 87  0
         indexSource( location );
 88  0
     }
 89  
 
 90  
     /**
 91  
      * Sets the DataDictionaryMapper
 92  
      * @param mapper the datadictionary mapper
 93  
      */
 94  
     public void setDataDictionaryMapper(DataDictionaryMapper mapper) {
 95  0
             this.ddMapper = mapper;
 96  0
     }
 97  
     
 98  
     private void indexSource(String sourceName) throws IOException {        
 99  0
         if (sourceName == null) {
 100  0
             throw new DataDictionaryException("Source Name given is null");
 101  
         }
 102  
 
 103  0
         if (!sourceName.endsWith(".xml") ) {
 104  0
             Resource resource = getFileResource(sourceName);
 105  0
             if (resource.exists()) {
 106  0
                 indexSource(resource.getFile());
 107  
             } else {
 108  0
                 LOG.warn("Could not find " + sourceName);
 109  0
                 throw new DataDictionaryException("DD Resource " + sourceName + " not found");
 110  
             }
 111  0
         } else {
 112  0
             if ( LOG.isDebugEnabled() ) {
 113  0
                 LOG.debug("adding sourceName " + sourceName + " ");
 114  
             }
 115  0
             Resource resource = getFileResource(sourceName);
 116  0
             if (! resource.exists()) {
 117  0
                 throw new DataDictionaryException("DD Resource " + sourceName + " not found");  
 118  
             }
 119  0
             String indexName = sourceName.substring(sourceName.lastIndexOf("/") + 1, sourceName.indexOf(".xml"));
 120  0
             configFileLocations.add( sourceName );
 121  
         }
 122  0
     }    
 123  
 
 124  
     private Resource getFileResource(String sourceName) {
 125  0
         DefaultResourceLoader resourceLoader = new DefaultResourceLoader(ClassLoaderUtils.getDefaultClassLoader());
 126  0
         return resourceLoader.getResource(sourceName);
 127  
     }
 128  
 
 129  
     private void indexSource(File dir) {
 130  0
         for (File file : dir.listFiles()) {
 131  0
             if (file.isDirectory()) {
 132  0
                 indexSource(file);
 133  0
             } else if (file.getName().endsWith(".xml") ) {
 134  0
                 configFileLocations.add( "file:" + file.getAbsolutePath());
 135  
             } else {
 136  0
                 if ( LOG.isDebugEnabled() ) {
 137  0
                     LOG.debug("Skipping non xml file " + file.getAbsolutePath() + " in DD load");
 138  
                 }
 139  
             }
 140  
         }
 141  0
     }
 142  
     
 143  
     public void parseDataDictionaryConfigurationFiles( boolean allowConcurrentValidation ) {
 144  
         // expand configuration locations into files
 145  
 
 146  0
         LOG.info( "Starting DD XML File Load" );
 147  0
         String[] configFileLocationsArray = new String[configFileLocations.size()];
 148  0
         configFileLocationsArray = configFileLocations.toArray( configFileLocationsArray );
 149  0
         configFileLocations.clear(); // empty the list out so other items can be added
 150  
         try {
 151  0
             xmlReader.loadBeanDefinitions( configFileLocationsArray );
 152  0
         } catch (Exception e) {
 153  0
             LOG.error("Error loading bean definitions", e);
 154  0
             throw new DataDictionaryException("Error loading bean definitions: " + e.getLocalizedMessage());
 155  0
         }
 156  0
         LOG.info( "Completed DD XML File Load" );
 157  0
         if ( allowConcurrentValidation ) {
 158  0
             Thread t = new Thread(ddIndex);
 159  0
             t.start();
 160  0
         } else {
 161  0
             ddIndex.run();
 162  
         }
 163  0
     }
 164  
             
 165  0
     static boolean validateEBOs = true;
 166  
     
 167  
     public void validateDD( boolean validateEbos ) {
 168  0
             DataDictionary.validateEBOs = validateEbos;
 169  0
         Map<String,BusinessObjectEntry> boBeans = ddBeans.getBeansOfType(BusinessObjectEntry.class);
 170  0
         for ( BusinessObjectEntry entry : boBeans.values() ) {
 171  0
             entry.completeValidation();
 172  
         }
 173  0
         Map<String,DocumentEntry> docBeans = ddBeans.getBeansOfType(DocumentEntry.class);
 174  0
         for ( DocumentEntry entry : docBeans.values() ) {
 175  0
             entry.completeValidation();
 176  
         }
 177  0
     }
 178  
     
 179  
     public void validateDD() {
 180  0
             DataDictionary.validateEBOs = true;
 181  0
         Map<String,BusinessObjectEntry> boBeans = ddBeans.getBeansOfType(BusinessObjectEntry.class);
 182  0
         for ( BusinessObjectEntry entry : boBeans.values() ) {
 183  0
             entry.completeValidation();
 184  
         }
 185  0
         Map<String,DocumentEntry> docBeans = ddBeans.getBeansOfType(DocumentEntry.class);
 186  0
         for ( DocumentEntry entry : docBeans.values() ) {
 187  0
             entry.completeValidation();
 188  
         }
 189  0
     }
 190  
 
 191  
         /**
 192  
          * @param className
 193  
          * @return BusinessObjectEntry for the named class, or null if none exists
 194  
          */
 195  
         public BusinessObjectEntry getBusinessObjectEntry(String className ) {
 196  0
                 return ddMapper.getBusinessObjectEntry(ddIndex, className);
 197  
         }
 198  
 
 199  
         /**
 200  
          * This method gets the business object entry for a concrete class
 201  
          * 
 202  
          * @param className
 203  
          * @return
 204  
          */
 205  
         public BusinessObjectEntry getBusinessObjectEntryForConcreteClass(String className){
 206  0
                 return ddMapper.getBusinessObjectEntryForConcreteClass(ddIndex, className);
 207  
         }
 208  
         
 209  
         /**
 210  
          * @return List of businessObject classnames
 211  
          */
 212  
         public List<String> getBusinessObjectClassNames() {
 213  0
                 return ddMapper.getBusinessObjectClassNames(ddIndex);
 214  
         }
 215  
 
 216  
         /**
 217  
          * @return Map of (classname, BusinessObjectEntry) pairs
 218  
          */
 219  
         public Map<String, BusinessObjectEntry> getBusinessObjectEntries() {
 220  0
                 return ddMapper.getBusinessObjectEntries(ddIndex);
 221  
         }
 222  
 
 223  
         /**
 224  
          * @param className
 225  
          * @return DataDictionaryEntryBase for the named class, or null if none
 226  
          *         exists
 227  
          */
 228  
         public DataDictionaryEntry getDictionaryObjectEntry(String className) {
 229  0
                 return ddMapper.getDictionaryObjectEntry(ddIndex, className);
 230  
         }
 231  
 
 232  
         /**
 233  
          * Returns the KNS document entry for the given lookup key.  The documentTypeDDKey is interpreted
 234  
          * successively in the following ways until a mapping is found (or none if found):
 235  
          * <ol>
 236  
          * <li>KEW/workflow document type</li>
 237  
          * <li>business object class name</li>
 238  
          * <li>maintainable class name</li>
 239  
          * </ol>
 240  
          * This mapping is compiled when DataDictionary files are parsed on startup (or demand).  Currently this
 241  
          * means the mapping is static, and one-to-one (one KNS document maps directly to one and only
 242  
          * one key).
 243  
          * 
 244  
          * @param documentTypeDDKey the KEW/workflow document type name
 245  
          * @return the KNS DocumentEntry if it exists
 246  
          */
 247  
         public DocumentEntry getDocumentEntry(String documentTypeDDKey ) {
 248  0
                 return ddMapper.getDocumentEntry(ddIndex, documentTypeDDKey);
 249  
         }
 250  
 
 251  
         /**
 252  
          * Note: only MaintenanceDocuments are indexed by businessObject Class
 253  
          * 
 254  
          * This is a special case that is referenced in one location. Do we need
 255  
          * another map for this stuff??
 256  
          * 
 257  
          * @param businessObjectClass
 258  
          * @return DocumentEntry associated with the given Class, or null if there
 259  
          *         is none
 260  
          */
 261  
         public MaintenanceDocumentEntry getMaintenanceDocumentEntryForBusinessObjectClass(Class businessObjectClass) {
 262  0
                 return ddMapper.getMaintenanceDocumentEntryForBusinessObjectClass(ddIndex, businessObjectClass);
 263  
         }
 264  
 
 265  
         public Map<String, DocumentEntry> getDocumentEntries() {
 266  0
                 return ddMapper.getDocumentEntries(ddIndex);
 267  
         }
 268  
 
 269  
     /**
 270  
      * @param clazz
 271  
      * @param propertyName
 272  
      * @return true if the given propertyName names a property of the given class
 273  
      * @throws CompletionException if there is a problem accessing the named property on the given class
 274  
      */
 275  
     public static boolean isPropertyOf(Class targetClass, String propertyName) {
 276  0
         if (targetClass == null) {
 277  0
             throw new IllegalArgumentException("invalid (null) targetClass");
 278  
         }
 279  0
         if (StringUtils.isBlank(propertyName)) {
 280  0
             throw new IllegalArgumentException("invalid (blank) propertyName");
 281  
         }
 282  
 
 283  0
         PropertyDescriptor propertyDescriptor = buildReadDescriptor(targetClass, propertyName);
 284  
 
 285  0
         boolean isPropertyOf = (propertyDescriptor != null);
 286  0
         return isPropertyOf;
 287  
     }
 288  
 
 289  
     /**
 290  
      * @param clazz
 291  
      * @param propertyName
 292  
      * @return true if the given propertyName names a Collection property of the given class
 293  
      * @throws CompletionException if there is a problem accessing the named property on the given class
 294  
      */
 295  
     public static boolean isCollectionPropertyOf(Class targetClass, String propertyName) {
 296  0
         boolean isCollectionPropertyOf = false;
 297  
 
 298  0
         PropertyDescriptor propertyDescriptor = buildReadDescriptor(targetClass, propertyName);
 299  0
         if (propertyDescriptor != null) {
 300  0
             Class clazz = propertyDescriptor.getPropertyType();
 301  
 
 302  0
             if ((clazz != null) && Collection.class.isAssignableFrom(clazz)) {
 303  0
                 isCollectionPropertyOf = true;
 304  
             }
 305  
         }
 306  
 
 307  0
         return isCollectionPropertyOf;
 308  
     }
 309  
 
 310  
     public static PersistenceStructureService persistenceStructureService;
 311  
     
 312  
     /**
 313  
      * @return the persistenceStructureService
 314  
      */
 315  
     public static PersistenceStructureService getPersistenceStructureService() {
 316  0
         if ( persistenceStructureService == null ) {
 317  0
             persistenceStructureService = KNSServiceLocator.getPersistenceStructureService();
 318  
         }
 319  0
         return persistenceStructureService;
 320  
     }
 321  
     
 322  
     /**
 323  
      * This method determines the Class of the attributeName passed in. Null will be returned if the member is not available, or if
 324  
      * a reflection exception is thrown.
 325  
      * 
 326  
      * @param rootClass - Class that the attributeName property exists in.
 327  
      * @param attributeName - Name of the attribute you want a class for.
 328  
      * @return The Class of the attributeName, if the attribute exists on the rootClass. Null otherwise.
 329  
      */
 330  
     public static Class getAttributeClass(Class boClass, String attributeName) {
 331  
 
 332  
         // fail loudly if the attributeName isnt a member of rootClass
 333  0
         if (!isPropertyOf(boClass, attributeName)) {
 334  0
             throw new AttributeValidationException("unable to find attribute '" + attributeName + "' in rootClass '" + boClass.getName() + "'");
 335  
         }
 336  
 
 337  
             //Implementing Externalizable Business Object Services...
 338  
         //The boClass can be an interface, hence handling this separately, 
 339  
         //since the original method was throwing exception if the class could not be instantiated.
 340  0
         if(boClass.isInterface())
 341  0
                 return getAttributeClassWhenBOIsInterface(boClass, attributeName);
 342  
         else
 343  0
                 return getAttributeClassWhenBOIsClass(boClass, attributeName);                
 344  
 
 345  
     }
 346  
 
 347  
     /**
 348  
      * 
 349  
      * This method gets the property type of the given attributeName when the bo class is a concrete class
 350  
      * 
 351  
      * @param boClass
 352  
      * @param attributeName
 353  
      * @return
 354  
      */
 355  
     private static Class getAttributeClassWhenBOIsClass(Class boClass, String attributeName){
 356  
             BusinessObject boInstance;
 357  
         try {
 358  0
             boInstance = (BusinessObject) boClass.newInstance();
 359  0
         } catch (Exception e) {
 360  0
                 throw new RuntimeException("Unable to instantiate BO: " + boClass, e);
 361  0
         }
 362  
 
 363  
         // attempt to retrieve the class of the property
 364  
         try {
 365  0
             return ObjectUtils.getPropertyType(boInstance, attributeName, getPersistenceStructureService());
 366  0
         } catch (Exception e) {
 367  0
             throw new RuntimeException("Unable to determine property type for: " + boClass.getName() + "." + attributeName, e);
 368  
         }
 369  
     }
 370  
 
 371  
     /**
 372  
      * 
 373  
      * This method gets the property type of the given attributeName when the bo class is an interface
 374  
      * This method will also work if the bo class is not an interface, 
 375  
      * but that case requires special handling, hence a separate method getAttributeClassWhenBOIsClass 
 376  
      * 
 377  
      * @param boClass
 378  
      * @param attributeName
 379  
      * @return
 380  
      */
 381  
     private static Class getAttributeClassWhenBOIsInterface(Class boClass, String attributeName){
 382  0
         if (boClass == null) {
 383  0
             throw new IllegalArgumentException("invalid (null) boClass");
 384  
         }
 385  0
         if (StringUtils.isBlank(attributeName)) {
 386  0
             throw new IllegalArgumentException("invalid (blank) attributeName");
 387  
         }
 388  
 
 389  0
         PropertyDescriptor propertyDescriptor = null;
 390  
 
 391  0
         String[] intermediateProperties = attributeName.split("\\.");
 392  0
         int lastLevel = intermediateProperties.length - 1;
 393  0
         Class currentClass = boClass;
 394  
 
 395  0
         for (int i = 0; i <= lastLevel; ++i) {
 396  
 
 397  0
             String currentPropertyName = intermediateProperties[i];
 398  0
             propertyDescriptor = buildSimpleReadDescriptor(currentClass, currentPropertyName);
 399  
 
 400  0
             if (propertyDescriptor != null) {
 401  
 
 402  0
                 Class propertyType = propertyDescriptor.getPropertyType();
 403  0
                 if ( propertyType.equals( PersistableBusinessObjectExtension.class ) ) {
 404  0
                     propertyType = getPersistenceStructureService().getBusinessObjectAttributeClass( currentClass, currentPropertyName );                    
 405  
                 }
 406  0
                 if (Collection.class.isAssignableFrom(propertyType)) {
 407  
                         // TODO: determine property type using generics type definition
 408  0
                         throw new AttributeValidationException("Can't determine the Class of Collection elements because when the business object is an (possibly ExternalizableBusinessObject) interface.");
 409  
                 }
 410  
                 else {
 411  0
                     currentClass = propertyType;
 412  
                 }
 413  0
             }
 414  
             else {
 415  0
                     throw new AttributeValidationException("Can't find getter method of " + boClass.getName() + " for property " + attributeName);
 416  
             }
 417  
         }
 418  0
         return currentClass;
 419  
     }
 420  
     
 421  
     /**
 422  
      * This method determines the Class of the elements in the collectionName passed in.
 423  
      * 
 424  
      * @param boClass Class that the collectionName collection exists in.
 425  
      * @param collectionName the name of the collection you want the element class for
 426  
      * @return
 427  
      */
 428  
     public static Class getCollectionElementClass(Class boClass, String collectionName) {
 429  0
         if (boClass == null) {
 430  0
             throw new IllegalArgumentException("invalid (null) boClass");
 431  
         }
 432  0
         if (StringUtils.isBlank(collectionName)) {
 433  0
             throw new IllegalArgumentException("invalid (blank) collectionName");
 434  
         }
 435  
 
 436  0
         PropertyDescriptor propertyDescriptor = null;
 437  
 
 438  0
         String[] intermediateProperties = collectionName.split("\\.");
 439  0
         Class currentClass = boClass;
 440  
 
 441  0
         for (int i = 0; i <intermediateProperties.length; ++i) {
 442  
 
 443  0
             String currentPropertyName = intermediateProperties[i];
 444  0
             propertyDescriptor = buildSimpleReadDescriptor(currentClass, currentPropertyName);
 445  
 
 446  
 
 447  0
                 if (propertyDescriptor != null) {
 448  
 
 449  0
                     Class type = propertyDescriptor.getPropertyType();
 450  0
                     if (Collection.class.isAssignableFrom(type)) {
 451  
 
 452  0
                         if (getPersistenceStructureService().isPersistable(currentClass)) {
 453  
 
 454  0
                             Map<String, Class> collectionClasses = new HashMap<String, Class>();
 455  0
                             collectionClasses = getPersistenceStructureService().listCollectionObjectTypes(currentClass);
 456  0
                             currentClass = collectionClasses.get(currentPropertyName);
 457  
 
 458  0
                         }
 459  
                         else {
 460  0
                             throw new RuntimeException("Can't determine the Class of Collection elements because persistenceStructureService.isPersistable(" + currentClass.getName() + ") returns false.");
 461  
                         }
 462  
 
 463  
                     }
 464  
                     else {
 465  
 
 466  0
                         currentClass = propertyDescriptor.getPropertyType();
 467  
 
 468  
                     }
 469  
                 }
 470  
             }
 471  
 
 472  0
         return currentClass;
 473  
     }
 474  
 
 475  0
     static private Map<String, Map<String, PropertyDescriptor>> cache = new TreeMap<String, Map<String, PropertyDescriptor>>();
 476  
 
 477  
     /**
 478  
      * @param propertyClass
 479  
      * @param propertyName
 480  
      * @return PropertyDescriptor for the getter for the named property of the given class, if one exists.
 481  
      */
 482  
     public static PropertyDescriptor buildReadDescriptor(Class propertyClass, String propertyName) {
 483  0
         if (propertyClass == null) {
 484  0
             throw new IllegalArgumentException("invalid (null) propertyClass");
 485  
         }
 486  0
         if (StringUtils.isBlank(propertyName)) {
 487  0
             throw new IllegalArgumentException("invalid (blank) propertyName");
 488  
         }
 489  
 
 490  0
         PropertyDescriptor propertyDescriptor = null;
 491  
 
 492  0
         String[] intermediateProperties = propertyName.split("\\.");
 493  0
         int lastLevel = intermediateProperties.length - 1;
 494  0
         Class currentClass = propertyClass;
 495  
 
 496  0
         for (int i = 0; i <= lastLevel; ++i) {
 497  
 
 498  0
             String currentPropertyName = intermediateProperties[i];
 499  0
             propertyDescriptor = buildSimpleReadDescriptor(currentClass, currentPropertyName);
 500  
 
 501  0
             if (i < lastLevel) {
 502  
 
 503  0
                 if (propertyDescriptor != null) {
 504  
 
 505  0
                     Class propertyType = propertyDescriptor.getPropertyType();
 506  0
                     if ( propertyType.equals( PersistableBusinessObjectExtension.class ) ) {
 507  0
                         propertyType = getPersistenceStructureService().getBusinessObjectAttributeClass( currentClass, currentPropertyName );                    
 508  
                     }
 509  0
                     if (Collection.class.isAssignableFrom(propertyType)) {
 510  
 
 511  0
                         if (getPersistenceStructureService().isPersistable(currentClass)) {
 512  
 
 513  0
                             Map<String, Class> collectionClasses = new HashMap<String, Class>();
 514  0
                             collectionClasses = getPersistenceStructureService().listCollectionObjectTypes(currentClass);
 515  0
                             currentClass = collectionClasses.get(currentPropertyName);
 516  
 
 517  0
                         }
 518  
                         else {
 519  
 
 520  0
                             throw new RuntimeException("Can't determine the Class of Collection elements because persistenceStructureService.isPersistable(" + currentClass.getName() + ") returns false.");
 521  
 
 522  
                         }
 523  
 
 524  
                     }
 525  
                     else {
 526  
 
 527  0
                         currentClass = propertyType;
 528  
 
 529  
                     }
 530  
 
 531  
                 }
 532  
 
 533  
             }
 534  
 
 535  
         }
 536  
 
 537  0
         return propertyDescriptor;
 538  
     }
 539  
 
 540  
     /**
 541  
      * @param propertyClass
 542  
      * @param propertyName
 543  
      * @return PropertyDescriptor for the getter for the named property of the given class, if one exists.
 544  
      */
 545  
     public static PropertyDescriptor buildSimpleReadDescriptor(Class propertyClass, String propertyName) {
 546  0
         if (propertyClass == null) {
 547  0
             throw new IllegalArgumentException("invalid (null) propertyClass");
 548  
         }
 549  0
         if (StringUtils.isBlank(propertyName)) {
 550  0
             throw new IllegalArgumentException("invalid (blank) propertyName");
 551  
         }
 552  
 
 553  0
         PropertyDescriptor p = null;
 554  
 
 555  
         // check to see if we've cached this descriptor already. if yes, return true.
 556  0
         String propertyClassName = propertyClass.getName();
 557  0
         Map<String, PropertyDescriptor> m = cache.get(propertyClassName);
 558  0
         if (null != m) {
 559  0
             p = m.get(propertyName);
 560  0
             if (null != p) {
 561  0
                 return p;
 562  
             }
 563  
         }
 564  
 
 565  0
         String prefix = StringUtils.capitalize(propertyName);
 566  0
         String getName = "get" + prefix;
 567  0
         String isName = "is" + prefix;
 568  
 
 569  
         try {
 570  
 
 571  0
             p = new PropertyDescriptor(propertyName, propertyClass, getName, null);
 572  
 
 573  
         }
 574  0
         catch (IntrospectionException e) {
 575  
             try {
 576  
 
 577  0
                 p = new PropertyDescriptor(propertyName, propertyClass, isName, null);
 578  
 
 579  
             }
 580  0
             catch (IntrospectionException f) {
 581  
                 // ignore it
 582  0
             }
 583  0
         }
 584  
 
 585  
         // cache the property descriptor if we found it.
 586  0
         if (null != p) {
 587  
 
 588  0
             if (null == m) {
 589  
 
 590  0
                 m = new TreeMap<String, PropertyDescriptor>();
 591  0
                 cache.put(propertyClassName, m);
 592  
 
 593  
             }
 594  
 
 595  0
             m.put(propertyName, p);
 596  
 
 597  
         }
 598  
 
 599  0
         return p;
 600  
     }
 601  
 
 602  
     public Set<InactivationBlockingMetadata> getAllInactivationBlockingMetadatas(Class blockedClass) {
 603  0
             return ddMapper.getAllInactivationBlockingMetadatas(ddIndex, blockedClass);
 604  
     }
 605  
     
 606  
     /**
 607  
      * This method gathers beans of type BeanOverride and invokes each one's performOverride() method.
 608  
      */
 609  
     // KULRICE-4513
 610  
     public void performBeanOverrides()
 611  
     {
 612  0
             Collection<BeanOverride> beanOverrides = ddBeans.getBeansOfType(BeanOverride.class).values();
 613  
             
 614  0
             if (beanOverrides.isEmpty()){
 615  0
                     LOG.info("DataDictionary.performOverrides(): No beans to override");
 616  
             }
 617  0
                 for (BeanOverride beanOverride : beanOverrides) {
 618  
                         
 619  0
                         Object bean = ddBeans.getBean(beanOverride.getBeanName());
 620  0
                         beanOverride.performOverride(bean);
 621  0
                         LOG.info("DataDictionary.performOverrides(): Performing override on bean: " + bean.toString());
 622  0
                 }
 623  0
     }
 624  
 }