Package io.quarkus.funqy.runtime
Class RequestContextImpl
- java.lang.Object
-
- io.quarkus.funqy.runtime.RequestContextImpl
-
- All Implemented Interfaces:
RequestContext
public class RequestContextImpl extends Object implements RequestContext
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<Class<?>,Object>contextDataprotected Map<String,Object>properties
-
Constructor Summary
Constructors Constructor Description RequestContextImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<Class<?>,Object>getContextData()<T> TgetContextData(Class<T> key)Map<String,Object>getProperties()ObjectgetProperty(String name)voidsetContextData(Class<?> key, Object value)voidsetProperty(String name, Object value)
-
-
-
Method Detail
-
getProperty
public Object getProperty(String name)
- Specified by:
getPropertyin interfaceRequestContext
-
getProperties
public Map<String,Object> getProperties()
- Specified by:
getPropertiesin interfaceRequestContext
-
setProperty
public void setProperty(String name, Object value)
- Specified by:
setPropertyin interfaceRequestContext
-
getContextData
public <T> T getContextData(Class<T> key)
- Specified by:
getContextDatain interfaceRequestContext
-
setContextData
public void setContextData(Class<?> key, Object value)
- Specified by:
setContextDatain interfaceRequestContext
-
getContextData
public Map<Class<?>,Object> getContextData()
- Specified by:
getContextDatain interfaceRequestContext
-
-