All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.validation.util.GetDeclaredField Maven / Gradle / Ivy

Go to download

Module repackaging of the Hibernate validator library and Validation API (JSR 303)

There is a newer version: 3.0-JBoss-4.0.2_03
Show newest version
package org.hibernate.validation.util;

import java.security.PrivilegedAction;
import java.lang.reflect.Field;

import org.hibernate.validation.util.ReflectionHelper;

/**
 * @author Emmanuel Bernard
 */
public class GetDeclaredField implements PrivilegedAction {
	private final Class clazz;
	private final String fieldName;

	public static GetDeclaredField action(Class clazz, String fieldName) {
		return new GetDeclaredField( clazz, fieldName );
	}

	private GetDeclaredField(Class clazz, String fieldName) {
		this.clazz = clazz;
		this.fieldName = fieldName;
	}

	public Field run() {
		try {
			final Field field = clazz.getDeclaredField( fieldName );
			ReflectionHelper.setAccessibility( field );
			return field;
		}
		catch ( NoSuchFieldException e ) {
			return null;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy