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

org.hibernate.validator.internal.util.privilegedactions.GetMethods Maven / Gradle / Ivy

/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator.internal.util.privilegedactions;

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

/**
 * Returns the methods of the specified class (include inherited methods).
 *
 * @author Emmanuel Bernard
 */
public final class GetMethods implements PrivilegedAction {
	private final Class clazz;

	public static GetMethods action(Class clazz) {
		return new GetMethods( clazz );
	}

	private GetMethods(Class clazz) {
		this.clazz = clazz;
	}

	@Override
	public Method[] run() {
		return clazz.getMethods();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy