org.apache.cayenne.property.BeanAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cayenne-client-nodeps
Show all versions of cayenne-client-nodeps
Cayenne Object Persistence Framework
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.property;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
/**
* A property accessor that uses set/get methods following JavaBean naming conventions.
*
* @since 1.2
* @author Andrus Adamchik
*/
public class BeanAccessor implements PropertyAccessor {
protected String propertyName;
protected Method readMethod;
protected Method writeMethod;
protected Object nullValue;
public BeanAccessor(Class objectClass, String propertyName, Class propertyType) {
if (objectClass == null) {
throw new IllegalArgumentException("Null objectClass");
}
if (propertyName == null) {
throw new IllegalArgumentException("Null propertyName");
}
this.propertyName = propertyName;
this.nullValue = PropertyUtils.defaultNullValueForType(propertyType);
try {
PropertyDescriptor descriptor = new PropertyDescriptor(
propertyName,
objectClass);
this.readMethod = descriptor.getReadMethod();
this.writeMethod = descriptor.getWriteMethod();
}
catch (IntrospectionException e) {
throw new PropertyAccessException(
"Invalid bean property: " + propertyName,
null,
e);
}
}
public String getName() {
return propertyName;
}
public Object readPropertyDirectly(Object object) throws PropertyAccessException {
if (readMethod == null) {
throw new PropertyAccessException("Property '"
+ propertyName
+ "' is not readable", this, object);
}
try {
return readMethod.invoke(object, null);
}
catch (Throwable th) {
throw new PropertyAccessException(
"Error reading property: " + propertyName,
this,
object,
th);
}
}
public void writePropertyDirectly(Object object, Object oldValue, Object newValue)
throws PropertyAccessException {
if (writeMethod == null) {
throw new PropertyAccessException("Property '"
+ propertyName
+ "' is not writable", this, object);
}
// this will take care of primitives.
if (newValue == null) {
newValue = this.nullValue;
}
try {
writeMethod.invoke(object, new Object[] {
newValue
});
}
catch (Throwable th) {
throw new PropertyAccessException(
"Error reading property: " + propertyName,
this,
object,
th);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy