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

com.jetdrone.vertx.yoke.annotations.AnnotationHandler Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.jetdrone.vertx.yoke.annotations;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

public interface AnnotationHandler {

    boolean isFor(Class clazz);

    void process(final T router, final Object instance, final Class clazz, final Method method);

    void process(final T router, final Object instance, final Class clazz, final Field field);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy