
com.zandero.rest.context.ContextProvider 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.context;
import io.vertx.core.http.HttpServerRequest;
/**
*
*/
public interface ContextProvider {
/**
* @param request current request
* @return object to be pushed into context storage
* @throws Throwable exception in case context can't be provided
*/
T provide(HttpServerRequest request) throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy