io.github.wycst.wast.common.annotation.AnnotationHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
package io.github.wycst.wast.common.annotation;
import java.lang.annotation.Annotation;
/**
* 注解接口处理
*
* @Author: wangy
* @Date: 2019/12/8 9:38
* @Description:
*/
public interface AnnotationHandler {
/**
* 方法调用之前
*
* @return
*/
public R beforeAnnotationHandle(A a);
/**
* 方法调用之后
*
* @return
*/
public void afterWithResult(Annotation annotation, R result, Throwable err);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy