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

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

package io.quarkus.funqy.runtime;

import java.util.Map;

public interface RequestContext {
    Object getProperty(String name);

    Map getProperties();

    void setProperty(String name, Object value);

     T getContextData(Class key);

    void setContextData(Class key, Object value);

    Map, Object> getContextData();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy