001/** 002 * Copyright 2005-2014 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.rice.krad.datadictionary.impl; 017 018import org.apache.commons.beanutils.BeanUtils; 019import org.kuali.rice.krad.datadictionary.FieldOverride; 020 021import java.lang.reflect.InvocationTargetException; 022 023/** 024 * A Field Override used to replace value elements from a Data Dictionary bean. 025 * 026 * @author Kuali Rice Team (rice.collab@kuali.org) 027 */ 028public class FieldOverrideForValueReplaceImpl implements FieldOverride { 029 030 private String propertyName; 031 private Object value; 032 033 public String getPropertyName() { 034 return propertyName; 035 } 036 037 public void setPropertyName(String propertyName) { 038 this.propertyName = propertyName; 039 } 040 041 public Object getValue() { 042 return value; 043 } 044 045 public void setValue(Object value) { 046 this.value = value; 047 } 048 049 public Object performFieldOverride(Object bean, Object property) { 050 try { 051 BeanUtils.setProperty(bean, this.getPropertyName(), this.getValue()); 052 } catch (IllegalAccessException e) { 053 throw new RuntimeException(e); 054 } catch (InvocationTargetException e) { 055 throw new RuntimeException(e); 056 } 057 058 return getValue(); 059 } 060}