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

io.github.wycst.wast.common.annotation.AnnotationHandler Maven / Gradle / Ivy

Go to download

Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines

There is a newer version: 0.0.20
Show newest version
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