Coverage Report - org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase
 
Classes in this File Line Coverage Branch Coverage Complexity
MaintenanceDocumentRuleBase
0%
0/385
0%
0/152
2.205
 
 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.maintenance.rules;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.kuali.rice.core.api.datetime.DateTimeService;
 21  
 import org.kuali.rice.core.api.config.property.ConfigurationService;
 22  
 import org.kuali.rice.core.api.services.CoreApiServiceLocator;
 23  
 import org.kuali.rice.core.util.RiceKeyConstants;
 24  
 import org.kuali.rice.core.web.format.Formatter;
 25  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 26  
 import org.kuali.rice.kim.service.RoleService;
 27  
 import org.kuali.rice.kns.bo.GlobalBusinessObject;
 28  
 import org.kuali.rice.kns.bo.Inactivateable;
 29  
 import org.kuali.rice.kns.bo.PersistableBusinessObject;
 30  
 import org.kuali.rice.kns.datadictionary.InactivationBlockingMetadata;
 31  
 import org.kuali.rice.kns.document.Document;
 32  
 import org.kuali.rice.kns.document.MaintenanceDocument;
 33  
 import org.kuali.rice.kns.document.authorization.MaintenanceDocumentAuthorizer;
 34  
 import org.kuali.rice.kns.exception.ValidationException;
 35  
 import org.kuali.rice.kns.maintenance.Maintainable;
 36  
 import org.kuali.rice.kns.rule.AddCollectionLineRule;
 37  
 import org.kuali.rice.kns.rule.event.ApproveDocumentEvent;
 38  
 import org.kuali.rice.kns.rules.DocumentRuleBase;
 39  
 import org.kuali.rice.kns.rules.MaintenanceDocumentRule;
 40  
 import org.kuali.rice.kns.service.BusinessObjectAuthorizationService;
 41  
 import org.kuali.rice.kns.service.BusinessObjectDictionaryService;
 42  
 import org.kuali.rice.kns.service.BusinessObjectService;
 43  
 import org.kuali.rice.kns.service.DataDictionaryService;
 44  
 import org.kuali.rice.kns.service.DictionaryValidationService;
 45  
 import org.kuali.rice.kns.service.DocumentHelperService;
 46  
 import org.kuali.rice.kns.service.InactivationBlockingDetectionService;
 47  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 48  
 import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
 49  
 import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService;
 50  
 import org.kuali.rice.kns.service.PersistenceService;
 51  
 import org.kuali.rice.kns.service.PersistenceStructureService;
 52  
 import org.kuali.rice.kns.util.ErrorMessage;
 53  
 import org.kuali.rice.kns.util.ForeignKeyFieldsPopulationState;
 54  
 import org.kuali.rice.kns.util.GlobalVariables;
 55  
 import org.kuali.rice.kns.util.KNSConstants;
 56  
 import org.kuali.rice.kns.util.KNSPropertyConstants;
 57  
 import org.kuali.rice.kns.util.MessageMap;
 58  
 import org.kuali.rice.kns.util.ObjectUtils;
 59  
 import org.kuali.rice.kns.util.UrlFactory;
 60  
 import org.kuali.rice.kns.workflow.service.KualiWorkflowDocument;
 61  
 import org.kuali.rice.kns.workflow.service.WorkflowDocumentService;
 62  
 import org.springframework.util.AutoPopulatingList;
 63  
 
 64  
 import java.security.GeneralSecurityException;
 65  
 import java.util.ArrayList;
 66  
 import java.util.Collection;
 67  
 import java.util.Iterator;
 68  
 import java.util.List;
 69  
 import java.util.Map;
 70  
 import java.util.Properties;
 71  
 import java.util.Set;
 72  
 
 73  
 
 74  
 /**
 75  
  * This class contains all of the business rules that are common to all maintenance documents.
 76  
  *
 77  
  *
 78  
  */
 79  
 public class MaintenanceDocumentRuleBase extends DocumentRuleBase implements MaintenanceDocumentRule, AddCollectionLineRule {
 80  0
     protected static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(MaintenanceDocumentRuleBase.class);
 81  
 
 82  
     // public static final String CHART_MAINTENANCE_EDOC = "ChartMaintenanceEDoc";
 83  
 
 84  
     // these two constants are used to correctly prefix errors added to
 85  
     // the global errors
 86  
     public static final String MAINTAINABLE_ERROR_PREFIX = KNSConstants.MAINTENANCE_NEW_MAINTAINABLE;
 87  
     public static final String DOCUMENT_ERROR_PREFIX = "document.";
 88  
     public static final String MAINTAINABLE_ERROR_PATH = DOCUMENT_ERROR_PREFIX + "newMaintainableObject";
 89  
 
 90  
     protected PersistenceStructureService persistenceStructureService;
 91  
     protected PersistenceService persistenceService;
 92  
     protected DataDictionaryService ddService;
 93  
     protected DocumentHelperService documentHelperService;
 94  
     protected BusinessObjectService boService;
 95  
     protected BusinessObjectDictionaryService boDictionaryService;
 96  
     protected DictionaryValidationService dictionaryValidationService;
 97  
     protected ConfigurationService configService;
 98  
     protected MaintenanceDocumentDictionaryService maintDocDictionaryService;
 99  
     protected WorkflowDocumentService workflowDocumentService;
 100  
     protected org.kuali.rice.kim.service.PersonService personService;
 101  
     protected RoleService roleService;
 102  
     protected BusinessObjectAuthorizationService businessObjectAuthorizationService;
 103  
 
 104  
     private PersistableBusinessObject oldBo;
 105  
     private PersistableBusinessObject newBo;
 106  
     private Class boClass;
 107  
 
 108  
     protected List priorErrorPath;
 109  
 
 110  
     /**
 111  
      *
 112  
      * Default constructor a MaintenanceDocumentRuleBase.java.
 113  
      *
 114  
      */
 115  0
     public MaintenanceDocumentRuleBase() {
 116  
 
 117  0
         priorErrorPath = new ArrayList();
 118  
 
 119  
         // Pseudo-inject some services.
 120  
         //
 121  
         // This approach is being used to make it simpler to convert the Rule classes
 122  
         // to spring-managed with these services injected by Spring at some later date.
 123  
         // When this happens, just remove these calls to the setters with
 124  
         // SpringServiceLocator, and configure the bean defs for spring.
 125  
         try {
 126  0
             this.setPersistenceStructureService(KNSServiceLocator.getPersistenceStructureService());
 127  0
             this.setDdService(KNSServiceLocatorWeb.getDataDictionaryService());
 128  0
             this.setPersistenceService(KNSServiceLocator.getPersistenceService());
 129  0
             this.setBoService(KNSServiceLocator.getBusinessObjectService());
 130  0
             this.setBoDictionaryService(KNSServiceLocatorWeb.getBusinessObjectDictionaryService());
 131  0
             this.setDictionaryValidationService(KNSServiceLocatorWeb.getDictionaryValidationService());
 132  0
             this.setConfigService(KNSServiceLocator.getKualiConfigurationService());
 133  0
             this.setDocumentHelperService(KNSServiceLocatorWeb.getDocumentHelperService());
 134  0
             this.setMaintDocDictionaryService(KNSServiceLocatorWeb.getMaintenanceDocumentDictionaryService());
 135  0
             this.setWorkflowDocumentService(KNSServiceLocatorWeb.getWorkflowDocumentService());
 136  0
             this.setPersonService( KIMServiceLocator.getPersonService() );
 137  0
             this.setBusinessObjectAuthorizationService(KNSServiceLocatorWeb.getBusinessObjectAuthorizationService());
 138  0
         } catch ( Exception ex ) {
 139  
             // do nothing, avoid blowing up if called prior to spring initialization
 140  0
         }
 141  0
     }
 142  
 
 143  
     /**
 144  
      * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRule#processSaveDocument(org.kuali.rice.kns.document.Document)
 145  
      */
 146  
     @Override
 147  
     public boolean processSaveDocument(Document document) {
 148  
 
 149  0
         MaintenanceDocument maintenanceDocument = (MaintenanceDocument) document;
 150  
 
 151  
         // remove all items from the errorPath temporarily (because it may not
 152  
         // be what we expect, or what we need)
 153  0
         clearErrorPath();
 154  
 
 155  
         // setup convenience pointers to the old & new bo
 156  0
         setupBaseConvenienceObjects(maintenanceDocument);
 157  
 
 158  
         // the document must be in a valid state for saving. this does not include business
 159  
         // rules, but just enough testing that the document is populated and in a valid state
 160  
         // to not cause exceptions when saved. if this passes, then the save will always occur,
 161  
         // regardless of business rules.
 162  0
         if (!isDocumentValidForSave(maintenanceDocument)) {
 163  0
             resumeErrorPath();
 164  0
             return false;
 165  
         }
 166  
 
 167  
         // apply rules that are specific to the class of the maintenance document
 168  
         // (if implemented). this will always succeed if not overloaded by the
 169  
         // subclass
 170  0
         processCustomSaveDocumentBusinessRules(maintenanceDocument);
 171  
 
 172  
         // return the original set of items to the errorPath
 173  0
         resumeErrorPath();
 174  
 
 175  
         // return the original set of items to the errorPath, to ensure no impact
 176  
         // on other upstream or downstream items that rely on the errorPath
 177  0
         return true;
 178  
     }
 179  
 
 180  
     /**
 181  
      * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRule#processRouteDocument(org.kuali.rice.kns.document.Document)
 182  
      */
 183  
     @Override
 184  
     public boolean processRouteDocument(Document document) {
 185  0
         LOG.info("processRouteDocument called");
 186  
 
 187  0
         MaintenanceDocument maintenanceDocument = (MaintenanceDocument) document;
 188  
 
 189  
         // get the documentAuthorizer for this document
 190  0
         MaintenanceDocumentAuthorizer documentAuthorizer = (MaintenanceDocumentAuthorizer) getDocumentHelperService().getDocumentAuthorizer(document);
 191  
 
 192  
         // remove all items from the errorPath temporarily (because it may not
 193  
         // be what we expect, or what we need)
 194  0
         clearErrorPath();
 195  
 
 196  
         // setup convenience pointers to the old & new bo
 197  0
         setupBaseConvenienceObjects(maintenanceDocument);
 198  
 
 199  
         // apply rules that are common across all maintenance documents, regardless of class
 200  0
         processGlobalSaveDocumentBusinessRules(maintenanceDocument);
 201  
 
 202  
         // from here on, it is in a default-success mode, and will route unless one of the
 203  
         // business rules stop it.
 204  0
         boolean success = true;
 205  
 
 206  0
         KualiWorkflowDocument workflowDocument = document.getDocumentHeader().getWorkflowDocument();
 207  0
         if (workflowDocument.stateIsInitiated() || workflowDocument.stateIsSaved()){
 208  0
                 success &= documentAuthorizer.canCreateOrMaintain((MaintenanceDocument)document, GlobalVariables.getUserSession().getPerson());
 209  0
                 if (success == false) {
 210  0
                         GlobalVariables.getMessageMap().putError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.AUTHORIZATION_ERROR_DOCUMENT, new String[]{GlobalVariables.getUserSession().getPerson().getPrincipalName(), "Create/Maintain", this.getMaintDocDictionaryService().getDocumentTypeName(newBo.getClass())});
 211  
                 }
 212  
         }
 213  
         // apply rules that are common across all maintenance documents, regardless of class
 214  0
         success &= processGlobalRouteDocumentBusinessRules(maintenanceDocument);
 215  
 
 216  
         // apply rules that are specific to the class of the maintenance document
 217  
         // (if implemented). this will always succeed if not overloaded by the
 218  
         // subclass
 219  0
         success &= processCustomRouteDocumentBusinessRules(maintenanceDocument);
 220  
 
 221  0
         success &= processInactivationBlockChecking(maintenanceDocument);
 222  
 
 223  
         // return the original set of items to the errorPath, to ensure no impact
 224  
         // on other upstream or downstream items that rely on the errorPath
 225  0
         resumeErrorPath();
 226  
 
 227  0
         return success;
 228  
     }
 229  
 
 230  
     /**
 231  
      * Determines whether a document is inactivating the record being maintained
 232  
      *
 233  
      * @param maintenanceDocument
 234  
      * @return true iff the document is inactivating the business object; false otherwise
 235  
      */
 236  
     protected boolean isDocumentInactivatingBusinessObject(MaintenanceDocument maintenanceDocument) {
 237  0
         if (maintenanceDocument.isEdit()) {
 238  0
                 Class boClass = maintenanceDocument.getNewMaintainableObject().getBoClass();
 239  
             // we can only be inactivating a business object if we're editing it
 240  0
             if (boClass != null && Inactivateable.class.isAssignableFrom(boClass)) {
 241  0
                 Inactivateable oldInactivateableBO = (Inactivateable) oldBo;
 242  0
                 Inactivateable newInactivateableBO = (Inactivateable) newBo;
 243  
 
 244  0
                 return oldInactivateableBO.isActive() && !newInactivateableBO.isActive();
 245  
             }
 246  
         }
 247  0
         return false;
 248  
     }
 249  
 
 250  
     /**
 251  
      * Determines whether this document has been inactivation blocked
 252  
      *
 253  
      * @param maintenanceDocument
 254  
      * @return true iff there is NOTHING that blocks this record
 255  
      */
 256  
     protected boolean processInactivationBlockChecking(MaintenanceDocument maintenanceDocument) {
 257  0
         if (isDocumentInactivatingBusinessObject(maintenanceDocument)) {
 258  0
                 Class boClass = maintenanceDocument.getNewMaintainableObject().getBoClass();
 259  0
             Set<InactivationBlockingMetadata> inactivationBlockingMetadatas = ddService.getAllInactivationBlockingDefinitions(boClass);
 260  
 
 261  0
             if (inactivationBlockingMetadatas != null) {
 262  0
                 for (InactivationBlockingMetadata inactivationBlockingMetadata : inactivationBlockingMetadatas) {
 263  
                     // for the purposes of maint doc validation, we only need to look for the first blocking record
 264  
 
 265  
                     // we found a blocking record, so we return false
 266  0
                     if (!processInactivationBlockChecking(maintenanceDocument, inactivationBlockingMetadata)) {
 267  0
                         return false;
 268  
                     }
 269  
                 }
 270  
             }
 271  
         }
 272  0
         return true;
 273  
     }
 274  
 
 275  
     /**
 276  
      * Given a InactivationBlockingMetadata, which represents a relationship that may block inactivation of a BO, it determines whether there
 277  
      * is a record that violates the blocking definition
 278  
      *
 279  
      * @param maintenanceDocument
 280  
      * @param inactivationBlockingMetadata
 281  
      * @return true iff, based on the InactivationBlockingMetadata, the maintenance document should be allowed to route
 282  
      */
 283  
     protected boolean processInactivationBlockChecking(MaintenanceDocument maintenanceDocument, InactivationBlockingMetadata inactivationBlockingMetadata) {
 284  
 
 285  0
         String inactivationBlockingDetectionServiceBeanName = inactivationBlockingMetadata.getInactivationBlockingDetectionServiceBeanName();
 286  0
         if (StringUtils.isBlank(inactivationBlockingDetectionServiceBeanName)) {
 287  0
             inactivationBlockingDetectionServiceBeanName = KNSServiceLocatorWeb.DEFAULT_INACTIVATION_BLOCKING_DETECTION_SERVICE;
 288  
         }
 289  0
         InactivationBlockingDetectionService inactivationBlockingDetectionService = KNSServiceLocatorWeb.getInactivationBlockingDetectionService(inactivationBlockingDetectionServiceBeanName);
 290  
 
 291  0
         boolean foundBlockingRecord = inactivationBlockingDetectionService.hasABlockingRecord(newBo, inactivationBlockingMetadata);
 292  
 
 293  0
         if (foundBlockingRecord) {
 294  0
             putInactivationBlockingErrorOnPage(maintenanceDocument, inactivationBlockingMetadata);
 295  
         }
 296  
 
 297  0
         return !foundBlockingRecord;
 298  
     }
 299  
 
 300  
     /**
 301  
      * If there is a violation of an InactivationBlockingMetadata, it prints out an appropriate error into the error map
 302  
      *
 303  
      * @param document
 304  
      * @param inactivationBlockingMetadata
 305  
      */
 306  
     protected void putInactivationBlockingErrorOnPage(MaintenanceDocument document, InactivationBlockingMetadata inactivationBlockingMetadata) {
 307  0
         if (!persistenceStructureService.hasPrimaryKeyFieldValues(newBo)) {
 308  0
             throw new RuntimeException("Maintenance document did not have all primary key values filled in.");
 309  
         }
 310  0
         Map fieldValues = persistenceService.getPrimaryKeyFieldValues(newBo);
 311  0
         Properties parameters = new Properties();
 312  0
         parameters.put(KNSConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, inactivationBlockingMetadata.getBlockedBusinessObjectClass().getName());
 313  0
         parameters.put(KNSConstants.DISPATCH_REQUEST_PARAMETER, KNSConstants.METHOD_DISPLAY_ALL_INACTIVATION_BLOCKERS);
 314  
 
 315  0
         List keys = new ArrayList();
 316  0
         if (getPersistenceStructureService().isPersistable(newBo.getClass())) {
 317  0
             keys = getPersistenceStructureService().listPrimaryKeyFieldNames(newBo.getClass());
 318  
         }
 319  
 
 320  
         // build key value url parameters used to retrieve the business object
 321  0
         String keyName = null;
 322  0
         for (Iterator iter = keys.iterator(); iter.hasNext();) {
 323  0
             keyName = (String) iter.next();
 324  
 
 325  0
             Object keyValue = null;
 326  0
             if (keyName != null) {
 327  0
                 keyValue = ObjectUtils.getPropertyValue(newBo, keyName);
 328  
             }
 329  
 
 330  0
             if (keyValue == null) {
 331  0
                 keyValue = "";
 332  0
             } else if (keyValue instanceof java.sql.Date) { //format the date for passing in url
 333  0
                 if (Formatter.findFormatter(keyValue.getClass()) != null) {
 334  0
                     Formatter formatter = Formatter.getFormatter(keyValue.getClass());
 335  0
                     keyValue = (String) formatter.format(keyValue);
 336  0
                 }
 337  
             } else {
 338  0
                 keyValue = keyValue.toString();
 339  
             }
 340  
 
 341  
             // Encrypt value if it is a secure field
 342  0
             if (businessObjectAuthorizationService.attributeValueNeedsToBeEncryptedOnFormsAndLinks(inactivationBlockingMetadata.getBlockedBusinessObjectClass(), keyName)) {
 343  
                 try {
 344  0
                     keyValue = CoreApiServiceLocator.getEncryptionService().encrypt(keyValue);
 345  
                 }
 346  0
                 catch (GeneralSecurityException e) {
 347  0
                     LOG.error("Exception while trying to encrypted value for inquiry framework.", e);
 348  0
                     throw new RuntimeException(e);
 349  0
                 }
 350  
             }
 351  
 
 352  0
             parameters.put(keyName, keyValue);
 353  0
         }
 354  
 
 355  0
         String blockingUrl = UrlFactory.parameterizeUrl(KNSConstants.DISPLAY_ALL_INACTIVATION_BLOCKERS_ACTION, parameters);
 356  
 
 357  
         // post an error about the locked document
 358  0
         GlobalVariables.getMessageMap().putError(KNSConstants.GLOBAL_ERRORS, RiceKeyConstants.ERROR_INACTIVATION_BLOCKED, blockingUrl);
 359  0
     }
 360  
 
 361  
     /**
 362  
      * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRule#processApproveDocument(ApproveDocumentEvent)
 363  
      */
 364  
     @Override
 365  
     public boolean processApproveDocument(ApproveDocumentEvent approveEvent) {
 366  
 
 367  0
         MaintenanceDocument maintenanceDocument = (MaintenanceDocument) approveEvent.getDocument();
 368  
 
 369  
         // remove all items from the errorPath temporarily (because it may not
 370  
         // be what we expect, or what we need)
 371  0
         clearErrorPath();
 372  
 
 373  
         // setup convenience pointers to the old & new bo
 374  0
         setupBaseConvenienceObjects(maintenanceDocument);
 375  
 
 376  
         // apply rules that are common across all maintenance documents, regardless of class
 377  0
         processGlobalSaveDocumentBusinessRules(maintenanceDocument);
 378  
 
 379  
         // from here on, it is in a default-success mode, and will approve unless one of the
 380  
         // business rules stop it.
 381  0
         boolean success = true;
 382  
 
 383  
         // apply rules that are common across all maintenance documents, regardless of class
 384  0
         success &= processGlobalApproveDocumentBusinessRules(maintenanceDocument);
 385  
 
 386  
         // apply rules that are specific to the class of the maintenance document
 387  
         // (if implemented). this will always succeed if not overloaded by the
 388  
         // subclass
 389  0
         success &= processCustomApproveDocumentBusinessRules(maintenanceDocument);
 390  
 
 391  
         // return the original set of items to the errorPath, to ensure no impact
 392  
         // on other upstream or downstream items that rely on the errorPath
 393  0
         resumeErrorPath();
 394  
 
 395  0
         return success;
 396  
     }
 397  
 
 398  
     /**
 399  
      *
 400  
      * This method is a convenience method to easily add a Document level error (ie, one not tied to a specific field, but
 401  
      * applicable to the whole document).
 402  
      *
 403  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 404  
      *
 405  
      */
 406  
     protected void putGlobalError(String errorConstant) {
 407  0
         if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) {
 408  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant);
 409  
         }
 410  0
     }
 411  
 
 412  
     /**
 413  
      *
 414  
      * This method is a convenience method to easily add a Document level error (ie, one not tied to a specific field, but
 415  
      * applicable to the whole document).
 416  
      *
 417  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 418  
      * @param parameter - Replacement value for part of the error message.
 419  
      *
 420  
      */
 421  
     protected void putGlobalError(String errorConstant, String parameter) {
 422  0
         if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) {
 423  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant, parameter);
 424  
         }
 425  0
     }
 426  
 
 427  
     /**
 428  
      *
 429  
      * This method is a convenience method to easily add a Document level error (ie, one not tied to a specific field, but
 430  
      * applicable to the whole document).
 431  
      *
 432  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 433  
      * @param parameters - Array of replacement values for part of the error message.
 434  
      *
 435  
      */
 436  
     protected void putGlobalError(String errorConstant, String[] parameters) {
 437  0
         if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) {
 438  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant, parameters);
 439  
         }
 440  0
     }
 441  
 
 442  
     /**
 443  
      *
 444  
      * This method is a convenience method to add a property-specific error to the global errors list. This method makes sure that
 445  
      * the correct prefix is added to the property name so that it will display correctly on maintenance documents.
 446  
      *
 447  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 448  
      *        the UI.
 449  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 450  
      *
 451  
      */
 452  
     protected void putFieldError(String propertyName, String errorConstant) {
 453  0
         if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) {
 454  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant);
 455  
         }
 456  0
     }
 457  
 
 458  
     /**
 459  
      *
 460  
      * This method is a convenience method to add a property-specific error to the global errors list. This method makes sure that
 461  
      * the correct prefix is added to the property name so that it will display correctly on maintenance documents.
 462  
      *
 463  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 464  
      *        the UI.
 465  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 466  
      * @param parameter - Single parameter value that can be used in the message so that you can display specific values to the
 467  
      *        user.
 468  
      *
 469  
      */
 470  
     protected void putFieldError(String propertyName, String errorConstant, String parameter) {
 471  0
         if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) {
 472  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant, parameter);
 473  
         }
 474  0
     }
 475  
 
 476  
     /**
 477  
      *
 478  
      * This method is a convenience method to add a property-specific error to the global errors list. This method makes sure that
 479  
      * the correct prefix is added to the property name so that it will display correctly on maintenance documents.
 480  
      *
 481  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 482  
      *        the UI.
 483  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 484  
      * @param parameters - Array of strings holding values that can be used in the message so that you can display specific values
 485  
      *        to the user.
 486  
      *
 487  
      */
 488  
     protected void putFieldError(String propertyName, String errorConstant, String[] parameters) {
 489  0
         if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) {
 490  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant, parameters);
 491  
         }
 492  0
     }
 493  
 
 494  
     /**
 495  
      * Adds a property-specific error to the global errors list, with the DD short label as the single argument.
 496  
      *
 497  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 498  
      *        the UI.
 499  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 500  
      */
 501  
     protected void putFieldErrorWithShortLabel(String propertyName, String errorConstant) {
 502  0
         String shortLabel = ddService.getAttributeShortLabel(boClass, propertyName);
 503  0
         putFieldError(propertyName, errorConstant, shortLabel);
 504  0
     }
 505  
 
 506  
     /**
 507  
      *
 508  
      * This method is a convenience method to add a property-specific document error to the global errors list. This method makes
 509  
      * sure that the correct prefix is added to the property name so that it will display correctly on maintenance documents.
 510  
      *
 511  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 512  
      *        the UI.
 513  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 514  
      * @param parameter - Single parameter value that can be used in the message so that you can display specific values to the
 515  
      *        user.
 516  
      *
 517  
      */
 518  
     protected void putDocumentError(String propertyName, String errorConstant, String parameter) {
 519  0
         if (!errorAlreadyExists(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant)) {
 520  0
             GlobalVariables.getMessageMap().putError(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant, parameter);
 521  
         }
 522  0
     }
 523  
 
 524  
     /**
 525  
      *
 526  
      * This method is a convenience method to add a property-specific document error to the global errors list. This method makes
 527  
      * sure that the correct prefix is added to the property name so that it will display correctly on maintenance documents.
 528  
      *
 529  
      * @param propertyName - Property name of the element that is associated with the error. Used to mark the field as errored in
 530  
      *        the UI.
 531  
      * @param errorConstant - Error Constant that can be mapped to a resource for the actual text message.
 532  
      * @param parameters - Array of String parameters that can be used in the message so that you can display specific values to the
 533  
      *        user.
 534  
      *
 535  
      */
 536  
     protected void putDocumentError(String propertyName, String errorConstant, String[] parameters) {
 537  0
         GlobalVariables.getMessageMap().putError(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant, parameters);
 538  0
     }
 539  
 
 540  
     /**
 541  
      *
 542  
      * Convenience method to determine whether the field already has the message indicated.
 543  
      *
 544  
      * This is useful if you want to suppress duplicate error messages on the same field.
 545  
      *
 546  
      * @param propertyName - propertyName you want to test on
 547  
      * @param errorConstant - errorConstant you want to test
 548  
      * @return returns True if the propertyName indicated already has the errorConstant indicated, false otherwise
 549  
      *
 550  
      */
 551  
     protected boolean errorAlreadyExists(String propertyName, String errorConstant) {
 552  
 
 553  0
         if (GlobalVariables.getMessageMap().fieldHasMessage(propertyName, errorConstant)) {
 554  0
             return true;
 555  
         }
 556  
         else {
 557  0
             return false;
 558  
         }
 559  
     }
 560  
 
 561  
     /**
 562  
      *
 563  
      * This method specifically doesn't put any prefixes before the error so that the developer can do things specific to the
 564  
      * globals errors (like newDelegateChangeDocument errors)
 565  
      *
 566  
      * @param propertyName
 567  
      * @param errorConstant
 568  
      */
 569  
     protected void putGlobalsError(String propertyName, String errorConstant) {
 570  0
         if (!errorAlreadyExists(propertyName, errorConstant)) {
 571  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(propertyName, errorConstant);
 572  
         }
 573  0
     }
 574  
 
 575  
     /**
 576  
      *
 577  
      * This method specifically doesn't put any prefixes before the error so that the developer can do things specific to the
 578  
      * globals errors (like newDelegateChangeDocument errors)
 579  
      *
 580  
      * @param propertyName
 581  
      * @param errorConstant
 582  
      * @param parameter
 583  
      */
 584  
     protected void putGlobalsError(String propertyName, String errorConstant, String parameter) {
 585  0
         if (!errorAlreadyExists(propertyName, errorConstant)) {
 586  0
             GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(propertyName, errorConstant, parameter);
 587  
         }
 588  0
     }
 589  
 
 590  
     /**
 591  
      *
 592  
      * This method is used to deal with error paths that are not what we expect them to be. This method, along with
 593  
      * resumeErrorPath() are used to temporarily clear the errorPath, and then return it to the original state after the rule is
 594  
      * executed.
 595  
      *
 596  
      * This method is called at the very beginning of rule enforcement and pulls a copy of the contents of the errorPath ArrayList
 597  
      * to a local arrayList for temporary storage.
 598  
      *
 599  
      */
 600  
     protected void clearErrorPath() {
 601  
 
 602  
         // add all the items from the global list to the local list
 603  0
         priorErrorPath.addAll(GlobalVariables.getMessageMap().getErrorPath());
 604  
 
 605  
         // clear the global list
 606  0
         GlobalVariables.getMessageMap().getErrorPath().clear();
 607  
 
 608  0
     }
 609  
 
 610  
     /**
 611  
      *
 612  
      * This method is used to deal with error paths that are not what we expect them to be. This method, along with clearErrorPath()
 613  
      * are used to temporarily clear the errorPath, and then return it to the original state after the rule is executed.
 614  
      *
 615  
      * This method is called at the very end of the rule enforcement, and returns the temporarily stored copy of the errorPath to
 616  
      * the global errorPath, so that no other classes are interrupted.
 617  
      *
 618  
      */
 619  
     protected void resumeErrorPath() {
 620  
         // revert the global errorPath back to what it was when we entered this
 621  
         // class
 622  0
         GlobalVariables.getMessageMap().getErrorPath().addAll(priorErrorPath);
 623  0
     }
 624  
 
 625  
     /**
 626  
      *
 627  
      * This method executes the DataDictionary Validation against the document.
 628  
      *
 629  
      * @param document
 630  
      * @return true if it passes DD validation, false otherwise
 631  
      */
 632  
     protected boolean dataDictionaryValidate(MaintenanceDocument document) {
 633  
 
 634  0
         LOG.debug("MaintenanceDocument validation beginning");
 635  
 
 636  
         // explicitly put the errorPath that the dictionaryValidationService requires
 637  0
         GlobalVariables.getMessageMap().addToErrorPath("document.newMaintainableObject");
 638  
 
 639  
         // document must have a newMaintainable object
 640  0
         Maintainable newMaintainable = document.getNewMaintainableObject();
 641  0
         if (newMaintainable == null) {
 642  0
             GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject");
 643  0
             throw new ValidationException("Maintainable object from Maintenance Document '" + document.getDocumentTitle() + "' is null, unable to proceed.");
 644  
         }
 645  
 
 646  
         // document's newMaintainable must contain an object (ie, not null)
 647  0
         PersistableBusinessObject businessObject = newMaintainable.getBusinessObject();
 648  0
         if (businessObject == null) {
 649  0
             GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject.");
 650  0
             throw new ValidationException("Maintainable's component business object is null.");
 651  
         }
 652  
 
 653  
         // run required check from maintenance data dictionary
 654  0
         maintDocDictionaryService.validateMaintenanceRequiredFields(document);
 655  
 
 656  
         //check for duplicate entries in collections if necessary
 657  0
         maintDocDictionaryService.validateMaintainableCollectionsForDuplicateEntries(document);
 658  
 
 659  
         // run the DD DictionaryValidation (non-recursive)
 660  0
         dictionaryValidationService.validateBusinessObjectOnMaintenanceDocument(businessObject,
 661  
                         document.getDocumentHeader().getWorkflowDocument().getDocumentType());
 662  
 
 663  
         // do default (ie, mandatory) existence checks
 664  0
         dictionaryValidationService.validateDefaultExistenceChecks(businessObject);
 665  
 
 666  
         // explicitly remove the errorPath we've added
 667  0
         GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject");
 668  
 
 669  0
         LOG.debug("MaintenanceDocument validation ending");
 670  0
         return true;
 671  
     }
 672  
 
 673  
     /**
 674  
      *
 675  
      * This method checks the two major cases that may violate primary key integrity.
 676  
      *
 677  
      * 1. Disallow changing of the primary keys on an EDIT maintenance document. Other fields can be changed, but once the primary
 678  
      * keys have been set, they are permanent.
 679  
      *
 680  
      * 2. Disallow creating a new object whose primary key values are already present in the system on a CREATE NEW maintenance
 681  
      * document.
 682  
      *
 683  
      * This method also will add new Errors to the Global Error Map.
 684  
      *
 685  
      * @param document - The Maintenance Document being tested.
 686  
      * @return Returns false if either test failed, otherwise returns true.
 687  
      *
 688  
      */
 689  
     protected boolean primaryKeyCheck(MaintenanceDocument document) {
 690  
 
 691  
         // default to success if no failures
 692  0
         boolean success = true;
 693  0
         Class boClass = document.getNewMaintainableObject().getBoClass();
 694  
 
 695  0
         PersistableBusinessObject oldBo = document.getOldMaintainableObject().getBusinessObject();
 696  0
         PersistableBusinessObject newBo = document.getNewMaintainableObject().getBusinessObject();
 697  
 
 698  
         // We dont do primaryKeyChecks on Global Business Object maintenance documents. This is
 699  
         // because it doesnt really make any sense to do so, given the behavior of Globals. When a
 700  
         // Global Document completes, it will update or create a new record for each BO in the list.
 701  
         // As a result, there's no problem with having existing BO records in the system, they will
 702  
         // simply get updated.
 703  0
         if (newBo instanceof GlobalBusinessObject) {
 704  0
             return success;
 705  
         }
 706  
 
 707  
         // fail and complain if the person has changed the primary keys on
 708  
         // an EDIT maintenance document.
 709  0
         if (document.isEdit()) {
 710  0
             if (!ObjectUtils.equalByKeys(oldBo, newBo)) { // this is a very handy utility on our ObjectUtils
 711  
 
 712  
                 // add a complaint to the errors
 713  0
                 putDocumentError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_PRIMARY_KEYS_CHANGED_ON_EDIT, getHumanReadablePrimaryKeyFieldNames(boClass));
 714  0
                 success &= false;
 715  
             }
 716  
         }
 717  
 
 718  
         // fail and complain if the person has selected a new object with keys that already exist
 719  
         // in the DB.
 720  0
         else if (document.isNew()) {
 721  
 
 722  
             // get a map of the pk field names and values
 723  0
             Map newPkFields = persistenceService.getPrimaryKeyFieldValues(newBo);
 724  
 
 725  
             // TODO: Good suggestion from Aaron, dont bother checking the DB, if all of the
 726  
             // objects PK fields dont have values. If any are null or empty, then
 727  
             // we're done. The current way wont fail, but it will make a wasteful
 728  
             // DB call that may not be necessary, and we want to minimize these.
 729  
 
 730  
             // attempt to do a lookup, see if this object already exists by these Primary Keys
 731  0
             PersistableBusinessObject testBo = (PersistableBusinessObject)boService.findByPrimaryKey(boClass, newPkFields);
 732  
 
 733  
             // if the retrieve was successful, then this object already exists, and we need
 734  
             // to complain
 735  0
             if (testBo != null) {
 736  0
                 putDocumentError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_KEYS_ALREADY_EXIST_ON_CREATE_NEW, getHumanReadablePrimaryKeyFieldNames(boClass));
 737  0
                 success &= false;
 738  
             }
 739  
         }
 740  0
         return success;
 741  
     }
 742  
 
 743  
     /**
 744  
      *
 745  
      * This method creates a human-readable string of the class' primary key field names, as designated by the DataDictionary.
 746  
      *
 747  
      * @param boClass
 748  
      * @return
 749  
      */
 750  
     protected String getHumanReadablePrimaryKeyFieldNames(Class boClass) {
 751  
 
 752  0
         String delim = "";
 753  0
         StringBuffer pkFieldNames = new StringBuffer();
 754  
 
 755  
         // get a list of all the primary key field names, walk through them
 756  0
         List pkFields = persistenceStructureService.getPrimaryKeys(boClass);
 757  0
         for (Iterator iter = pkFields.iterator(); iter.hasNext();) {
 758  0
             String pkFieldName = (String) iter.next();
 759  
 
 760  
             // use the DataDictionary service to translate field name into human-readable label
 761  0
             String humanReadableFieldName = ddService.getAttributeLabel(boClass, pkFieldName);
 762  
 
 763  
             // append the next field
 764  0
             pkFieldNames.append(delim + humanReadableFieldName);
 765  
 
 766  
             // separate names with commas after the first one
 767  0
             if (delim.equalsIgnoreCase("")) {
 768  0
                 delim = ", ";
 769  
             }
 770  0
         }
 771  
 
 772  0
         return pkFieldNames.toString();
 773  
     }
 774  
 
 775  
     /**
 776  
      * This method enforces all business rules that are common to all maintenance documents which must be tested before doing an
 777  
      * approval.
 778  
      *
 779  
      * It can be overloaded in special cases where a MaintenanceDocument has very special needs that would be contrary to what is
 780  
      * enforced here.
 781  
      *
 782  
      * @param document - a populated MaintenanceDocument instance
 783  
      * @return true if the document can be approved, false if not
 784  
      */
 785  
     protected boolean processGlobalApproveDocumentBusinessRules(MaintenanceDocument document) {
 786  0
             return true;
 787  
     }
 788  
 
 789  
     /**
 790  
      *
 791  
      * This method enforces all business rules that are common to all maintenance documents which must be tested before doing a
 792  
      * route.
 793  
      *
 794  
      * It can be overloaded in special cases where a MaintenanceDocument has very special needs that would be contrary to what is
 795  
      * enforced here.
 796  
      *
 797  
      * @param document - a populated MaintenanceDocument instance
 798  
      * @return true if the document can be routed, false if not
 799  
      */
 800  
     protected boolean processGlobalRouteDocumentBusinessRules(MaintenanceDocument document) {
 801  
 
 802  0
         boolean success = true;
 803  
 
 804  
         // require a document description field
 805  0
         success &= checkEmptyDocumentField(KNSPropertyConstants.DOCUMENT_HEADER + "." + KNSPropertyConstants.DOCUMENT_DESCRIPTION, document.getDocumentHeader().getDocumentDescription(), "Description");
 806  
 
 807  0
         return success;
 808  
     }
 809  
 
 810  
     /**
 811  
      *
 812  
      * This method enforces all business rules that are common to all maintenance documents which must be tested before doing a
 813  
      * save.
 814  
      *
 815  
      * It can be overloaded in special cases where a MaintenanceDocument has very special needs that would be contrary to what is
 816  
      * enforced here.
 817  
      *
 818  
      * Note that although this method returns a true or false to indicate whether the save should happen or not, this result may not
 819  
      * be followed by the calling method. In other words, the boolean result will likely be ignored, and the document saved,
 820  
      * regardless.
 821  
      *
 822  
      * @param document - a populated MaintenanceDocument instance
 823  
      * @return true if all business rules succeed, false if not
 824  
      */
 825  
     protected boolean processGlobalSaveDocumentBusinessRules(MaintenanceDocument document) {
 826  
 
 827  
         // default to success
 828  0
         boolean success = true;
 829  
 
 830  
         // do generic checks that impact primary key violations
 831  0
         primaryKeyCheck(document);
 832  
 
 833  
         // this is happening only on the processSave, since a Save happens in both the
 834  
         // Route and Save events.
 835  0
         this.dataDictionaryValidate(document);
 836  
 
 837  0
         return success;
 838  
     }
 839  
 
 840  
     /**
 841  
      * This method should be overridden to provide custom rules for processing document saving
 842  
      *
 843  
      * @param document
 844  
      * @return boolean
 845  
      */
 846  
     protected boolean processCustomSaveDocumentBusinessRules(MaintenanceDocument document) {
 847  0
         return true;
 848  
     }
 849  
 
 850  
     /**
 851  
      *
 852  
      * This method should be overridden to provide custom rules for processing document routing
 853  
      *
 854  
      * @param document
 855  
      * @return boolean
 856  
      */
 857  
     protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) {
 858  0
         return true;
 859  
     }
 860  
 
 861  
     /**
 862  
      * This method should be overridden to provide custom rules for processing document approval.
 863  
      *
 864  
      * @param document
 865  
      * @return booelan
 866  
      */
 867  
     protected boolean processCustomApproveDocumentBusinessRules(MaintenanceDocument document) {
 868  0
         return true;
 869  
     }
 870  
 
 871  
     // Document Validation Helper Methods
 872  
 
 873  
     /**
 874  
      *
 875  
      * This method checks to see if the document is in a state that it can be saved without causing exceptions.
 876  
      *
 877  
      * Note that Business Rules are NOT enforced here, only validity checks.
 878  
      *
 879  
      * This method will only return false if the document is in such a state that routing it will cause RunTimeExceptions.
 880  
      *
 881  
      * @param maintenanceDocument - a populated MaintenaceDocument instance.
 882  
      * @return boolean - returns true unless the object is in an invalid state.
 883  
      *
 884  
      */
 885  
     protected boolean isDocumentValidForSave(MaintenanceDocument maintenanceDocument) {
 886  
 
 887  0
         boolean success = true;
 888  
 
 889  0
         success &= super.isDocumentOverviewValid(maintenanceDocument);
 890  0
         success &= validateDocumentStructure((Document) maintenanceDocument);
 891  0
         success &= validateMaintenanceDocument(maintenanceDocument);
 892  0
         success &= validateGlobalBusinessObjectPersistable(maintenanceDocument);
 893  0
         return success;
 894  
     }
 895  
 
 896  
     /**
 897  
      *
 898  
      * This method makes sure the document itself is valid, and has the necessary fields populated to be routable.
 899  
      *
 900  
      * This is not a business rules test, rather its a structure test to make sure that the document will not cause exceptions
 901  
      * before routing.
 902  
      *
 903  
      * @param document - document to be tested
 904  
      * @return false if the document is missing key values, true otherwise
 905  
      */
 906  
     protected boolean validateDocumentStructure(Document document) {
 907  0
         boolean success = true;
 908  
 
 909  
         // document must have a populated documentNumber
 910  0
         String documentHeaderId = document.getDocumentNumber();
 911  0
         if (documentHeaderId == null || StringUtils.isEmpty(documentHeaderId)) {
 912  0
             throw new ValidationException("Document has no document number, unable to proceed.");
 913  
         }
 914  
 
 915  0
         return success;
 916  
     }
 917  
 
 918  
     /**
 919  
      *
 920  
      * This method checks to make sure the document is a valid maintenanceDocument, and has the necessary values populated such that
 921  
      * it will not cause exceptions in later routing or business rules testing.
 922  
      *
 923  
      * This is not a business rules test.
 924  
      *
 925  
      * @param maintenanceDocument - document to be tested
 926  
      * @return whether maintenance doc passes
 927  
      * @throws ValidationException
 928  
      */
 929  
     protected boolean validateMaintenanceDocument(MaintenanceDocument maintenanceDocument) {
 930  0
         boolean success = true;
 931  0
         Maintainable newMaintainable = maintenanceDocument.getNewMaintainableObject();
 932  
 
 933  
         // document must have a newMaintainable object
 934  0
         if (newMaintainable == null) {
 935  0
             throw new ValidationException("Maintainable object from Maintenance Document '" + maintenanceDocument.getDocumentTitle() + "' is null, unable to proceed.");
 936  
         }
 937  
 
 938  
         // document's newMaintainable must contain an object (ie, not null)
 939  0
         if (newMaintainable.getBusinessObject() == null) {
 940  0
             throw new ValidationException("Maintainable's component business object is null.");
 941  
         }
 942  
 
 943  
         // document's newMaintainable must contain a valid BusinessObject descendent
 944  0
         if (!PersistableBusinessObject.class.isAssignableFrom(newMaintainable.getBoClass())) {
 945  0
             throw new ValidationException("Maintainable's component object is not descended from BusinessObject.");
 946  
         }
 947  0
         return success;
 948  
     }
 949  
 
 950  
     /**
 951  
      *
 952  
      * This method checks whether this maint doc contains Global Business Objects, and if so, whether the GBOs are in a persistable
 953  
      * state. This will return false if this method determines that the GBO will cause a SQL Exception when the document is
 954  
      * persisted.
 955  
      *
 956  
      * @param document
 957  
      * @return False when the method determines that the contained Global Business Object will cause a SQL Exception, and the
 958  
      *         document should not be saved. It will return True otherwise.
 959  
      *
 960  
      */
 961  
     protected boolean validateGlobalBusinessObjectPersistable(MaintenanceDocument document) {
 962  0
         boolean success = true;
 963  
 
 964  0
         if (document.getNewMaintainableObject() == null) {
 965  0
             return success;
 966  
         }
 967  0
         if (document.getNewMaintainableObject().getBusinessObject() == null) {
 968  0
             return success;
 969  
         }
 970  0
         if (!(document.getNewMaintainableObject().getBusinessObject() instanceof GlobalBusinessObject)) {
 971  0
             return success;
 972  
         }
 973  
 
 974  0
         PersistableBusinessObject bo = (PersistableBusinessObject) document.getNewMaintainableObject().getBusinessObject();
 975  0
         GlobalBusinessObject gbo = (GlobalBusinessObject) bo;
 976  0
         return gbo.isPersistable();
 977  
     }
 978  
 
 979  
     /**
 980  
      *
 981  
      * This method tests to make sure the MaintenanceDocument passed in is based on the class you are expecting.
 982  
      *
 983  
      * It does this based on the NewMaintainableObject of the MaintenanceDocument.
 984  
      *
 985  
      * @param document - MaintenanceDocument instance you want to test
 986  
      * @param clazz - class you are expecting the MaintenanceDocument to be based on
 987  
      * @return true if they match, false if not
 988  
      *
 989  
      */
 990  
     protected boolean isCorrectMaintenanceClass(MaintenanceDocument document, Class clazz) {
 991  
 
 992  
         // disallow null arguments
 993  0
         if (document == null || clazz == null) {
 994  0
             throw new IllegalArgumentException("Null arguments were passed in.");
 995  
         }
 996  
 
 997  
         // compare the class names
 998  0
         if (clazz.toString().equals(document.getNewMaintainableObject().getBoClass().toString())) {
 999  0
             return true;
 1000  
         }
 1001  
         else {
 1002  0
             return false;
 1003  
         }
 1004  
     }
 1005  
 
 1006  
     /**
 1007  
      *
 1008  
      * This method accepts an object, and attempts to determine whether it is empty by this method's definition.
 1009  
      *
 1010  
      * OBJECT RESULT null false empty-string false whitespace false otherwise true
 1011  
      *
 1012  
      * If the result is false, it will add an object field error to the Global Errors.
 1013  
      *
 1014  
      * @param valueToTest - any object to test, usually a String
 1015  
      * @param propertyName - the name of the property being tested
 1016  
      * @return true or false, by the description above
 1017  
      *
 1018  
      */
 1019  
     protected boolean checkEmptyBOField(String propertyName, Object valueToTest, String parameter) {
 1020  
 
 1021  0
         boolean success = true;
 1022  
 
 1023  0
         success = checkEmptyValue(valueToTest);
 1024  
 
 1025  
         // if failed, then add a field error
 1026  0
         if (!success) {
 1027  0
             putFieldError(propertyName, RiceKeyConstants.ERROR_REQUIRED, parameter);
 1028  
         }
 1029  
 
 1030  0
         return success;
 1031  
     }
 1032  
 
 1033  
     /**
 1034  
      *
 1035  
      * This method accepts document field (such as , and attempts to determine whether it is empty by this method's definition.
 1036  
      *
 1037  
      * OBJECT RESULT null false empty-string false whitespace false otherwise true
 1038  
      *
 1039  
      * If the result is false, it will add document field error to the Global Errors.
 1040  
      *
 1041  
      * @param valueToTest - any object to test, usually a String
 1042  
      * @param propertyName - the name of the property being tested
 1043  
      * @return true or false, by the description above
 1044  
      *
 1045  
      */
 1046  
     protected boolean checkEmptyDocumentField(String propertyName, Object valueToTest, String parameter) {
 1047  0
         boolean success = true;
 1048  0
         success = checkEmptyValue(valueToTest);
 1049  0
         if (!success) {
 1050  0
             putDocumentError(propertyName, RiceKeyConstants.ERROR_REQUIRED, parameter);
 1051  
         }
 1052  0
         return success;
 1053  
     }
 1054  
 
 1055  
     /**
 1056  
      *
 1057  
      * This method accepts document field (such as , and attempts to determine whether it is empty by this method's definition.
 1058  
      *
 1059  
      * OBJECT RESULT null false empty-string false whitespace false otherwise true
 1060  
      *
 1061  
      * It will the result as a boolean
 1062  
      *
 1063  
      * @param valueToTest - any object to test, usually a String
 1064  
      *
 1065  
      */
 1066  
     protected boolean checkEmptyValue(Object valueToTest) {
 1067  0
         boolean success = true;
 1068  
 
 1069  
         // if its not a string, only fail if its a null object
 1070  0
         if (valueToTest == null) {
 1071  0
             success = false;
 1072  
         }
 1073  
         else {
 1074  
             // test for null, empty-string, or whitespace if its a string
 1075  0
             if (valueToTest instanceof String) {
 1076  0
                 if (StringUtils.isBlank((String) valueToTest)) {
 1077  0
                     success = false;
 1078  
                 }
 1079  
             }
 1080  
         }
 1081  
 
 1082  0
         return success;
 1083  
     }
 1084  
 
 1085  
     /**
 1086  
      *
 1087  
      * This method is used during debugging to dump the contents of the error map, including the key names. It is not used by the
 1088  
      * application in normal circumstances at all.
 1089  
      *
 1090  
      */
 1091  
     protected void showErrorMap() {
 1092  
 
 1093  0
         if (GlobalVariables.getMessageMap().hasNoErrors()) {
 1094  0
             return;
 1095  
         }
 1096  
 
 1097  0
         for (Iterator i = GlobalVariables.getMessageMap().getAllPropertiesAndErrors().iterator(); i.hasNext();) {
 1098  0
             Map.Entry e = (Map.Entry) i.next();
 1099  
 
 1100  0
             AutoPopulatingList errorList = (AutoPopulatingList) e.getValue();
 1101  0
             for (Iterator j = errorList.iterator(); j.hasNext();) {
 1102  0
                 ErrorMessage em = (ErrorMessage) j.next();
 1103  
 
 1104  0
                 if (em.getMessageParameters() == null) {
 1105  0
                     LOG.error(e.getKey().toString() + " = " + em.getErrorKey());
 1106  
                 }
 1107  
                 else {
 1108  0
                     LOG.error(e.getKey().toString() + " = " + em.getErrorKey() + " : " + em.getMessageParameters().toString());
 1109  
                 }
 1110  0
             }
 1111  0
         }
 1112  
 
 1113  0
     }
 1114  
 
 1115  
     /**
 1116  
      * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRule#setupBaseConvenienceObjects(MaintenanceDocument)
 1117  
      */
 1118  
     public void setupBaseConvenienceObjects(MaintenanceDocument document) {
 1119  
 
 1120  
         // setup oldAccount convenience objects, make sure all possible sub-objects are populated
 1121  0
         oldBo = (PersistableBusinessObject) document.getOldMaintainableObject().getBusinessObject();
 1122  0
         if (oldBo != null) {
 1123  0
             oldBo.refreshNonUpdateableReferences();
 1124  
         }
 1125  
 
 1126  
         // setup newAccount convenience objects, make sure all possible sub-objects are populated
 1127  0
         newBo = (PersistableBusinessObject) document.getNewMaintainableObject().getBusinessObject();
 1128  0
         newBo.refreshNonUpdateableReferences();
 1129  
 
 1130  0
         boClass = document.getNewMaintainableObject().getBoClass();
 1131  
 
 1132  
         // call the setupConvenienceObjects in the subclass, if a subclass exists
 1133  0
         setupConvenienceObjects();
 1134  0
     }
 1135  
 
 1136  
     public void setupConvenienceObjects() {
 1137  
         // should always be overriden by subclass
 1138  0
     }
 1139  
 
 1140  
     /**
 1141  
      *
 1142  
      * This method checks to make sure that if the foreign-key fields for the given reference attributes have any fields filled out,
 1143  
      * that all fields are filled out.
 1144  
      *
 1145  
      * If any are filled out, but all are not, it will return false and add a global error message about the problem.
 1146  
      *
 1147  
      * @param referenceName - The name of the reference object, whose foreign-key fields must be all-or-none filled out.
 1148  
      *
 1149  
      * @return true if this is the case, false if not
 1150  
      *
 1151  
      */
 1152  
     protected boolean checkForPartiallyFilledOutReferenceForeignKeys(String referenceName) {
 1153  
 
 1154  
         boolean success;
 1155  
 
 1156  
         ForeignKeyFieldsPopulationState fkFieldsState;
 1157  0
         fkFieldsState = persistenceStructureService.getForeignKeyFieldsPopulationState(newBo, referenceName);
 1158  
 
 1159  
         // determine result
 1160  0
         if (fkFieldsState.isAnyFieldsPopulated() && !fkFieldsState.isAllFieldsPopulated()) {
 1161  0
             success = false;
 1162  
         }
 1163  
         else {
 1164  0
             success = true;
 1165  
         }
 1166  
 
 1167  
         // add errors if appropriate
 1168  0
         if (!success) {
 1169  
 
 1170  
             // get the full set of foreign-keys
 1171  0
             List fKeys = new ArrayList(persistenceStructureService.getForeignKeysForReference(newBo.getClass(), referenceName).keySet());
 1172  0
             String fKeysReadable = consolidateFieldNames(fKeys, ", ").toString();
 1173  
 
 1174  
             // walk through the missing fields
 1175  0
             for (Iterator iter = fkFieldsState.getUnpopulatedFieldNames().iterator(); iter.hasNext();) {
 1176  0
                 String fieldName = (String) iter.next();
 1177  
 
 1178  
                 // get the human-readable name
 1179  0
                 String fieldNameReadable = ddService.getAttributeLabel(newBo.getClass(), fieldName);
 1180  
 
 1181  
                 // add a field error
 1182  0
                 putFieldError(fieldName, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_PARTIALLY_FILLED_OUT_REF_FKEYS, new String[] { fieldNameReadable, fKeysReadable });
 1183  0
             }
 1184  
         }
 1185  
 
 1186  0
         return success;
 1187  
     }
 1188  
 
 1189  
     /**
 1190  
      *
 1191  
      * This method turns a list of field property names, into a delimited string of the human-readable names.
 1192  
      *
 1193  
      * @param fieldNames - List of fieldNames
 1194  
      * @return A filled StringBuffer ready to go in an error message
 1195  
      *
 1196  
      */
 1197  
     protected StringBuffer consolidateFieldNames(List fieldNames, String delimiter) {
 1198  
 
 1199  0
         StringBuffer sb = new StringBuffer();
 1200  
 
 1201  
         // setup some vars
 1202  0
         boolean firstPass = true;
 1203  0
         String delim = "";
 1204  
 
 1205  
         // walk through the list
 1206  0
         for (Iterator iter = fieldNames.iterator(); iter.hasNext();) {
 1207  0
             String fieldName = (String) iter.next();
 1208  
 
 1209  
             // get the human-readable name
 1210  
             // add the new one, with the appropriate delimiter
 1211  0
             sb.append(delim + ddService.getAttributeLabel(newBo.getClass(), fieldName));
 1212  
 
 1213  
             // after the first item, start using a delimiter
 1214  0
             if (firstPass) {
 1215  0
                 delim = delimiter;
 1216  0
                 firstPass = false;
 1217  
             }
 1218  0
         }
 1219  
 
 1220  0
         return sb;
 1221  
     }
 1222  
 
 1223  
     /**
 1224  
      *
 1225  
      * This method translates the passed in field name into a human-readable attribute label.
 1226  
      *
 1227  
      * It assumes the existing newBO's class as the class to examine the fieldName for.
 1228  
      *
 1229  
      * @param fieldName The fieldName you want a human-readable label for.
 1230  
      * @return A human-readable label, pulled from the DataDictionary.
 1231  
      *
 1232  
      */
 1233  
     protected String getFieldLabel(String fieldName) {
 1234  0
         return ddService.getAttributeLabel(newBo.getClass(), fieldName) + "(" + ddService.getAttributeShortLabel(newBo.getClass(), fieldName) + ")";
 1235  
     }
 1236  
 
 1237  
     /**
 1238  
      *
 1239  
      * This method translates the passed in field name into a human-readable attribute label.
 1240  
      *
 1241  
      * It assumes the existing newBO's class as the class to examine the fieldName for.
 1242  
      *
 1243  
      * @param boClass The class to use in combination with the fieldName.
 1244  
      * @param fieldName The fieldName you want a human-readable label for.
 1245  
      * @return A human-readable label, pulled from the DataDictionary.
 1246  
      *
 1247  
      */
 1248  
     protected String getFieldLabel(Class boClass, String fieldName) {
 1249  0
         return ddService.getAttributeLabel(boClass, fieldName) + "(" + ddService.getAttributeShortLabel(boClass, fieldName) + ")";
 1250  
     }
 1251  
 
 1252  
     /**
 1253  
      * Gets the boDictionaryService attribute.
 1254  
      *
 1255  
      * @return Returns the boDictionaryService.
 1256  
      */
 1257  
     protected final BusinessObjectDictionaryService getBoDictionaryService() {
 1258  0
         return boDictionaryService;
 1259  
     }
 1260  
 
 1261  
     /**
 1262  
      * Sets the boDictionaryService attribute value.
 1263  
      *
 1264  
      * @param boDictionaryService The boDictionaryService to set.
 1265  
      */
 1266  
     public final void setBoDictionaryService(BusinessObjectDictionaryService boDictionaryService) {
 1267  0
         this.boDictionaryService = boDictionaryService;
 1268  0
     }
 1269  
 
 1270  
     /**
 1271  
      * Gets the boService attribute.
 1272  
      *
 1273  
      * @return Returns the boService.
 1274  
      */
 1275  
     protected final BusinessObjectService getBoService() {
 1276  0
         return boService;
 1277  
     }
 1278  
 
 1279  
     /**
 1280  
      * Sets the boService attribute value.
 1281  
      *
 1282  
      * @param boService The boService to set.
 1283  
      */
 1284  
     public final void setBoService(BusinessObjectService boService) {
 1285  0
         this.boService = boService;
 1286  0
     }
 1287  
 
 1288  
     /**
 1289  
      * Gets the configService attribute.
 1290  
      *
 1291  
      * @return Returns the configService.
 1292  
      */
 1293  
     protected final ConfigurationService getConfigService() {
 1294  0
         return configService;
 1295  
     }
 1296  
 
 1297  
     /**
 1298  
      * Sets the configService attribute value.
 1299  
      *
 1300  
      * @param configService The configService to set.
 1301  
      */
 1302  
     public final void setConfigService(ConfigurationService configService) {
 1303  0
         this.configService = configService;
 1304  0
     }
 1305  
 
 1306  
     /**
 1307  
      * Gets the ddService attribute.
 1308  
      *
 1309  
      * @return Returns the ddService.
 1310  
      */
 1311  
     protected final DataDictionaryService getDdService() {
 1312  0
         return ddService;
 1313  
     }
 1314  
 
 1315  
     /**
 1316  
      * Sets the ddService attribute value.
 1317  
      *
 1318  
      * @param ddService The ddService to set.
 1319  
      */
 1320  
     public final void setDdService(DataDictionaryService ddService) {
 1321  0
         this.ddService = ddService;
 1322  0
     }
 1323  
 
 1324  
     /**
 1325  
      * Gets the dictionaryValidationService attribute.
 1326  
      *
 1327  
      * @return Returns the dictionaryValidationService.
 1328  
      */
 1329  
     protected final DictionaryValidationService getDictionaryValidationService() {
 1330  0
         return dictionaryValidationService;
 1331  
     }
 1332  
 
 1333  
     /**
 1334  
      * Sets the dictionaryValidationService attribute value.
 1335  
      *
 1336  
      * @param dictionaryValidationService The dictionaryValidationService to set.
 1337  
      */
 1338  
     public final void setDictionaryValidationService(DictionaryValidationService dictionaryValidationService) {
 1339  0
         this.dictionaryValidationService = dictionaryValidationService;
 1340  0
     }
 1341  
 
 1342  
     /**
 1343  
      * Gets the maintDocDictionaryService attribute.
 1344  
      *
 1345  
      * @return Returns the maintDocDictionaryService.
 1346  
      */
 1347  
     protected final MaintenanceDocumentDictionaryService getMaintDocDictionaryService() {
 1348  0
         return maintDocDictionaryService;
 1349  
     }
 1350  
 
 1351  
     /**
 1352  
      * Sets the maintDocDictionaryService attribute value.
 1353  
      *
 1354  
      * @param maintDocDictionaryService The maintDocDictionaryService to set.
 1355  
      */
 1356  
     public final void setMaintDocDictionaryService(MaintenanceDocumentDictionaryService maintDocDictionaryService) {
 1357  0
         this.maintDocDictionaryService = maintDocDictionaryService;
 1358  0
     }
 1359  
 
 1360  
     /**
 1361  
      * Gets the newBo attribute.
 1362  
      *
 1363  
      * @return Returns the newBo.
 1364  
      */
 1365  
     protected final PersistableBusinessObject getNewBo() {
 1366  0
         return newBo;
 1367  
     }
 1368  
 
 1369  
     protected void setNewBo(PersistableBusinessObject newBo) {
 1370  0
         this.newBo = newBo;
 1371  0
     }
 1372  
 
 1373  
     /**
 1374  
      * Gets the oldBo attribute.
 1375  
      *
 1376  
      * @return Returns the oldBo.
 1377  
      */
 1378  
     protected final PersistableBusinessObject getOldBo() {
 1379  0
         return oldBo;
 1380  
     }
 1381  
 
 1382  
     /**
 1383  
      * Gets the persistenceService attribute.
 1384  
      *
 1385  
      * @return Returns the persistenceService.
 1386  
      */
 1387  
     protected final PersistenceService getPersistenceService() {
 1388  0
         return persistenceService;
 1389  
     }
 1390  
 
 1391  
     /**
 1392  
      * Sets the persistenceService attribute value.
 1393  
      *
 1394  
      * @param persistenceService The persistenceService to set.
 1395  
      */
 1396  
     public final void setPersistenceService(PersistenceService persistenceService) {
 1397  0
         this.persistenceService = persistenceService;
 1398  0
     }
 1399  
 
 1400  
     /**
 1401  
      * Gets the persistenceStructureService attribute.
 1402  
      *
 1403  
      * @return Returns the persistenceStructureService.
 1404  
      */
 1405  
     protected final PersistenceStructureService getPersistenceStructureService() {
 1406  0
         return persistenceStructureService;
 1407  
     }
 1408  
 
 1409  
     /**
 1410  
      * Sets the persistenceStructureService attribute value.
 1411  
      *
 1412  
      * @param persistenceStructureService The persistenceStructureService to set.
 1413  
      */
 1414  
     public final void setPersistenceStructureService(PersistenceStructureService persistenceStructureService) {
 1415  0
         this.persistenceStructureService = persistenceStructureService;
 1416  0
     }
 1417  
 
 1418  
     /**
 1419  
      * Gets the workflowDocumentService attribute.
 1420  
      *
 1421  
      * @return Returns the workflowDocumentService.
 1422  
      */
 1423  
     public WorkflowDocumentService getWorkflowDocumentService() {
 1424  0
         return workflowDocumentService;
 1425  
     }
 1426  
 
 1427  
     /**
 1428  
      * Sets the workflowDocumentService attribute value.
 1429  
      *
 1430  
      * @param workflowDocumentService The workflowDocumentService to set.
 1431  
      */
 1432  
     public void setWorkflowDocumentService(WorkflowDocumentService workflowDocumentService) {
 1433  0
         this.workflowDocumentService = workflowDocumentService;
 1434  0
     }
 1435  
 
 1436  
     public boolean processAddCollectionLineBusinessRules(MaintenanceDocument document, String collectionName, PersistableBusinessObject bo) {
 1437  0
         LOG.debug("processAddCollectionLineBusinessRules");
 1438  
 
 1439  
         // setup convenience pointers to the old & new bo
 1440  0
         setupBaseConvenienceObjects(document);
 1441  
 
 1442  
         // sanity check on the document object
 1443  0
         this.validateMaintenanceDocument( document );
 1444  
 
 1445  0
         boolean success = true;
 1446  0
         MessageMap map = GlobalVariables.getMessageMap();
 1447  0
         int errorCount = map.getErrorCount();
 1448  0
         map.addToErrorPath( MAINTAINABLE_ERROR_PATH );
 1449  0
         if ( LOG.isDebugEnabled() ) {
 1450  0
             LOG.debug( "processAddCollectionLineBusinessRules - BO: " + bo );
 1451  0
             LOG.debug( "Before Validate: " + map );
 1452  
         }
 1453  
         //getBoDictionaryService().performForceUppercase(bo);
 1454  0
         getMaintDocDictionaryService().validateMaintainableCollectionsAddLineRequiredFields( document, document.getNewMaintainableObject().getBusinessObject(), collectionName );
 1455  0
         String errorPath = KNSConstants.MAINTENANCE_ADD_PREFIX + collectionName;
 1456  0
         map.addToErrorPath( errorPath );
 1457  
       
 1458  0
         getDictionaryValidationService().validateBusinessObject( bo, false );
 1459  0
         success &= map.getErrorCount() == errorCount;
 1460  0
         success &= dictionaryValidationService.validateDefaultExistenceChecksForNewCollectionItem(document.getNewMaintainableObject().getBusinessObject(), bo, collectionName);
 1461  0
         success &= validateDuplicateIdentifierInDataDictionary(document, collectionName, bo);
 1462  0
         success &= processCustomAddCollectionLineBusinessRules( document, collectionName, bo );
 1463  
     
 1464  0
         map.removeFromErrorPath( errorPath );
 1465  0
         map.removeFromErrorPath( MAINTAINABLE_ERROR_PATH );
 1466  0
         if ( LOG.isDebugEnabled() ) {
 1467  0
             LOG.debug( "After Validate: " + map );
 1468  0
             LOG.debug( "processAddCollectionLineBusinessRules returning: " + success );
 1469  
         }
 1470  
 
 1471  0
         return success;
 1472  
     }
 1473  
 
 1474  
     /**
 1475  
      * This method validates that there should only exist one entry in the collection whose
 1476  
      * fields match the fields specified within the duplicateIdentificationFields in the
 1477  
      * maintenance document data dictionary.
 1478  
      * If the duplicateIdentificationFields is not specified in the DD, by default it would
 1479  
      * allow the addition to happen and return true.
 1480  
      * It will return false if it fails the uniqueness validation.
 1481  
      * @param document
 1482  
      * @param collectionName
 1483  
      * @param bo
 1484  
      * @return
 1485  
      */
 1486  
     protected boolean validateDuplicateIdentifierInDataDictionary(MaintenanceDocument document, String collectionName, PersistableBusinessObject bo) {
 1487  0
             boolean valid = true;
 1488  0
             PersistableBusinessObject maintBo = document.getNewMaintainableObject().getBusinessObject();
 1489  0
         Collection maintCollection = (Collection) ObjectUtils.getPropertyValue(maintBo, collectionName);
 1490  0
         List<String> duplicateIdentifier = document.getNewMaintainableObject().getDuplicateIdentifierFieldsFromDataDictionary(document.getDocumentHeader().getWorkflowDocument().getDocumentType(), collectionName);
 1491  0
             if (duplicateIdentifier.size()>0) {
 1492  0
             List<String> existingIdentifierString = document.getNewMaintainableObject().getMultiValueIdentifierList(maintCollection, duplicateIdentifier);
 1493  0
             if (document.getNewMaintainableObject().hasBusinessObjectExisted(bo, existingIdentifierString, duplicateIdentifier)) {
 1494  0
                         valid = false;
 1495  0
                         GlobalVariables.getMessageMap().putError(duplicateIdentifier.get(0), RiceKeyConstants.ERROR_DUPLICATE_ELEMENT, "entries in ", document.getDocumentHeader().getWorkflowDocument().getDocumentType());
 1496  
                 }
 1497  
             }
 1498  0
             return valid;
 1499  
     }
 1500  
 
 1501  
     public boolean processCustomAddCollectionLineBusinessRules(MaintenanceDocument document, String collectionName, PersistableBusinessObject line) {
 1502  0
         return true;
 1503  
     }
 1504  
 
 1505  
     public org.kuali.rice.kim.service.PersonService getPersonService() {
 1506  0
         return personService;
 1507  
     }
 1508  
 
 1509  
     public void setPersonService(org.kuali.rice.kim.service.PersonService personService) {
 1510  0
         this.personService = personService;
 1511  0
     }
 1512  
 
 1513  
     public DateTimeService getDateTimeService() {
 1514  0
         return KNSServiceLocator.getDateTimeService();
 1515  
     }
 1516  
 
 1517  
     /**
 1518  
      * @return the documentHelperService
 1519  
      */
 1520  
     public DocumentHelperService getDocumentHelperService() {
 1521  0
         return this.documentHelperService;
 1522  
     }
 1523  
 
 1524  
     /**
 1525  
      * @param documentHelperService the documentHelperService to set
 1526  
      */
 1527  
     public void setDocumentHelperService(DocumentHelperService documentHelperService) {
 1528  0
         this.documentHelperService = documentHelperService;
 1529  0
     }
 1530  
 
 1531  
         /**
 1532  
          * @return the businessObjectAuthorizationService
 1533  
          */
 1534  
         public BusinessObjectAuthorizationService getBusinessObjectAuthorizationService() {
 1535  0
                 return this.businessObjectAuthorizationService;
 1536  
         }
 1537  
 
 1538  
         /**
 1539  
          * @param businessObjectAuthorizationService the businessObjectAuthorizationService to set
 1540  
          */
 1541  
         public void setBusinessObjectAuthorizationService(
 1542  
                         BusinessObjectAuthorizationService businessObjectAuthorizationService) {
 1543  0
                 this.businessObjectAuthorizationService = businessObjectAuthorizationService;
 1544  0
         }
 1545  
 
 1546  
     protected RoleService getRoleService(){
 1547  0
         if(this.roleService==null){
 1548  0
             this.roleService = KIMServiceLocator.getRoleService();
 1549  
         }
 1550  0
         return this.roleService;
 1551  
     }
 1552  
 
 1553  
 }
 1554