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

org.macrocloud.kernel.toolkit.spel.ExpressionRootObject Maven / Gradle / Ivy


package org.macrocloud.kernel.toolkit.spel;

import lombok.AllArgsConstructor;
import lombok.Getter;

import java.lang.reflect.Method;

/**
 * ExpressionRootObject.
 *
 * @author macro
 */

@Getter
@AllArgsConstructor
public class ExpressionRootObject {
	
	/** The method. */
	private final Method method;

	/** The args. */
	private final Object[] args;

	/** The target. */
	private final Object target;

	/** The target class. */
	private final Class targetClass;

	/** The target method. */
	private final Method targetMethod;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy