public interface QueryContext
Modifier and Type | Method and Description |
---|---|
String |
getConvertedExpression()
Uses
SearchBean and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression |
<T> String |
getConvertedExpression(Class<T> beanClass)
Uses a custom bean and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression
|
<T,E> E |
getConvertedExpression(Class<T> beanClass,
Class<E> queryClass)
Uses a custom bean and query classes and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression
|
String |
getConvertedExpression(String originalExpression)
Uses
SearchBean and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression |
<T> String |
getConvertedExpression(String originalExpression,
Class<T> beanClass)
Uses a custom bean and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression
|
<T,E> E |
getConvertedExpression(String originalExpression,
Class<T> beanClass,
Class<E> queryClass)
Uses a custom bean and query classes and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression
|
String getConvertedExpression()
SearchBean
and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression<T> String getConvertedExpression(Class<T> beanClass)
<T,E> E getConvertedExpression(Class<T> beanClass, Class<E> queryClass)
String getConvertedExpression(String originalExpression)
SearchBean
and a visitor registered with
"search.visitor" contextual property to capture and
convert the original expression<T> String getConvertedExpression(String originalExpression, Class<T> beanClass)
<T,E> E getConvertedExpression(String originalExpression, Class<T> beanClass, Class<E> queryClass)
Apache CXF