
com.zandero.rest.bean.BeanProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.vertx Show documentation
Show all versions of rest.vertx Show documentation
JAX-RS REST annotation processor for vert.x verticals
The newest version!
package com.zandero.rest.bean;
import com.zandero.rest.injection.InjectionProvider;
import io.vertx.ext.web.RoutingContext;
public interface BeanProvider {
/**
* @param clazz to be provided
* @param context current request context
* @param injectionProvider injection provider
* @param class type
* @return object initialized from request / context
* @throws Throwable exception in case context can't be provided
*/
T provide(Class clazz, RoutingContext context, InjectionProvider injectionProvider) throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy