/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.tem.document.datadictionary; import static org.apache.commons.lang.StringUtils.isBlank; import java.util.ArrayList; import java.util.List; import org.kuali.rice.krad.datadictionary.SearchingTypeDefinition; /** * Generic BusinessObjectFillingInWorkflowAttributes that are aware of the business object. This makes it so that we can specify * attributes per business object if we need to and reduce the amount of repitious code. * */ public class BusinessObjectFillingInWorkflowAttributes extends org.kuali.rice.krad.datadictionary.WorkflowAttributes { private static final long serialVersionUID = -3426603523049661524L; private String businessObjectClassName; /** * @return Returns the businessObjectClassName. */ public String getBusinessObjectClassName() { return businessObjectClassName; } /** * @param businessObjectClassName The businessObjectClassName to set. */ public void setBusinessObjectClassName(final String businessObjectClassName) { this.businessObjectClassName = businessObjectClassName; if (getSearchingTypeDefinitions() != null) { ((BoAwareList) getSearchingTypeDefinitions()).setBusinessObjectClassName(getBusinessObjectClassName()); } } /** * @see org.kuali.rice.krad.datadictionary.WorkflowAttributes#setSearchingTypeDefinitions(java.util.List) */ @Override public void setSearchingTypeDefinitions(final List<SearchingTypeDefinition> searchingTypeDefinitions) { super.setSearchingTypeDefinitions(new BoAwareList(searchingTypeDefinitions)); ((BoAwareList) getSearchingTypeDefinitions()).setBusinessObjectClassName(getBusinessObjectClassName()); } private static class BoAwareList extends ArrayList<SearchingTypeDefinition> { private String businessObjectClassName; public BoAwareList(final List<SearchingTypeDefinition> data) { super(data); } /** * Gets the businessObjectClassName attribute. * @return Returns the businessObjectClassName. */ public String getBusinessObjectClassName() { return businessObjectClassName; } /** * Sets the businessObjectClassName attribute value. * @param businessObjectClassName The businessObjectClassName to set. */ public void setBusinessObjectClassName(final String businessObjectClassName) { this.businessObjectClassName = businessObjectClassName; for (final SearchingTypeDefinition type : this) { if (isBlank(type.getSearchingAttribute().getBusinessObjectClassName())) { type.getSearchingAttribute().setBusinessObjectClassName(businessObjectClassName); } } } } }