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

io.quarkus.funqy.runtime.ContextValueInjector Maven / Gradle / Ivy

package io.quarkus.funqy.runtime;

public class ContextValueInjector implements ValueInjector {
    protected Class parameterType;

    public ContextValueInjector(Class parameterType) {
        this.parameterType = parameterType;
    }

    @Override
    public Object extract(FunqyServerRequest request) {
        return request.context().getContextData(parameterType);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy