001/* 002 * Copyright 2006-2007 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.module.purap.document.validation.impl; 017 018import org.kuali.ole.module.purap.businessobject.PurchaseOrderSensitiveData; 019import org.kuali.ole.module.purap.businessobject.SensitiveData; 020import org.kuali.ole.sys.OLEKeyConstants; 021import org.kuali.ole.sys.context.SpringContext; 022import org.kuali.ole.vnd.businessobject.CommodityCode; 023import org.kuali.rice.kns.document.MaintenanceDocument; 024import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase; 025import org.kuali.rice.krad.service.BusinessObjectService; 026 027import java.util.HashMap; 028import java.util.Map; 029 030/** 031 * Validates the SensitiveData maintenance document. 032 */ 033public class SensitiveDataRule extends MaintenanceDocumentRuleBase { 034 035 /** 036 * This method performs custom route business rule checks on the document being routed. The rules include confirming the 037 * validity of the work group. 038 * 039 * @param document The document being routed. 040 * @return True if all the business rules pass, false otherwise. 041 * @see MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument) 042 */ 043 @Override 044 protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) { 045 boolean valid = true; 046 valid &= validateInactivationBlocking(); 047 return valid; 048 } 049 050 protected boolean processCustomApproveDocumentBusinessRules(MaintenanceDocument document) { 051 boolean valid = true; 052 valid &= validateInactivationBlocking(); 053 return valid; 054 } 055 056 protected boolean validateInactivationBlocking() { 057 SensitiveData oldSensitiveData = (SensitiveData) getOldBo(); 058 SensitiveData newSensitiveData = (SensitiveData) getNewBo(); 059 if (oldSensitiveData.isActive() && !newSensitiveData.isActive()) { 060 if (hasABlockingRecord(newSensitiveData.getSensitiveDataCode())) { 061 String documentLabel = "SensitiveData"; //SpringContext.getBean(DataDictionaryService.class).getDocumentLabelByClass(newSensitiveData.getClass()); 062 putGlobalError(OLEKeyConstants.ERROR_CANNOT_INACTIVATE_USED_BY_ACTIVE_RECORDS, documentLabel); 063 return false; 064 } 065 } 066 return true; 067 } 068 069 protected boolean hasABlockingRecord(String sensitiveDataCode) { 070 Map<String, Object> queryMap = new HashMap<String, Object>(); 071 queryMap.put("sensitiveDataCode", sensitiveDataCode); 072 073 //Check whether there are any PurchaseOrderSensitiveData whose sensitiveDataCode match with this SensitiveData's code 074 boolean hasPurchaseOrderSensitiveDataBlockingRecord = SpringContext.getBean(BusinessObjectService.class).countMatching(PurchaseOrderSensitiveData.class, queryMap) > 0; 075 076 queryMap.put("active", true); 077 //Check whether there are any active CommodityCode whose sensitiveDataCode match with this SensitiveData's code 078 boolean hasCommodityCodeBlockingRecord = SpringContext.getBean(BusinessObjectService.class).countMatching(CommodityCode.class, queryMap) > 0; 079 080 return hasPurchaseOrderSensitiveDataBlockingRecord || hasCommodityCodeBlockingRecord; 081 } 082 083}