org.support.project.aop.Advice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common Library for support-project.org application
package org.support.project.aop;
import java.lang.reflect.Method;
/**
* メソッドが呼ばれた時に呼ばれる
*
*/
public interface Advice {
Object invoke(T object, Method method, Object[] args) throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy