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

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

package io.quarkus.funqy.runtime;

public class InputValueInjector implements ValueInjector {

    protected Class parameterType;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy