001/* 002 * Copyright 2012 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 1.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/ecl1.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.coa.document.validation.impl; 017 018import java.util.HashMap; 019import java.util.List; 020import java.util.Map; 021 022import org.kuali.ole.coa.businessobject.OleStewardship; 023import org.kuali.ole.sys.OLEKeyConstants; 024import org.kuali.rice.kns.document.MaintenanceDocument; 025import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase; 026 027public class OleStewardShipRule extends MaintenanceDocumentRuleBase{ 028 029 @Override 030 protected boolean processCustomSaveDocumentBusinessRules(MaintenanceDocument document) { 031 boolean isValid = true; 032 isValid &= validateStewardShipTypeName(document); 033 return isValid; 034 035 } 036 037 /** 038 * This method validates duplicate stewardShipTypeName and return boolean value. 039 * @param oleStewardship 040 * @return boolean 041 */ 042 private boolean validateStewardShipTypeName(MaintenanceDocument document) { 043 OleStewardship oleStewardship = (OleStewardship) document.getNewMaintainableObject().getBusinessObject(); 044 if (!document.isEdit() && oleStewardship.getStewardshipTypeName() != null) { 045 Map<String, String> criteria = new HashMap<String, String>(); 046 criteria.put(OLEKeyConstants.STWRDSHIP_TYPE_NAME, oleStewardship.getStewardshipTypeName()); 047 List<OleStewardship> oleStewardshipList = (List<OleStewardship>) getBoService().findMatching(OleStewardship.class, criteria); 048 049 if ((oleStewardshipList.size() > 0)) { 050 for(OleStewardship oleStewardshipObj:oleStewardshipList){ 051 String stewardShipTypeName=oleStewardshipObj.getStewardshipTypeName(); 052 if(null==oleStewardship.getStewardshipTypeName()|| oleStewardship.getStewardshipTypeName().equalsIgnoreCase(stewardShipTypeName)) { 053 putFieldError(OLEKeyConstants.STWRDSHIP_TYPE_NAME, OLEKeyConstants.ERROR_DUP_FOUND_STWRD_TYP_NAME); 054 return false; 055 } 056 } 057 } 058 } 059 return true; 060 } 061 062}