Interface DynamicQuery
- All Known Implementing Classes:
DynamicQueryImpl
public interface DynamicQuery
Contains method declarations for object that represents Dynamic Query (predefined).
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddQueryParameter(String paramName, Object paramValue) Adds the query parameter.Gets the description.Gets the fexible query.getLabel()Gets the label.Gets the parameters.voidremoveQueryParameter(String paramName) Removes the query parameter.voidsetDescription(String description) Sets the description.voidSets the label.
-
Method Details
-
getParameters
Gets the parameters.- Returns:
- the parameters
-
getLabel
String getLabel()Gets the label.- Returns:
- the label
-
getFexibleQuery
String getFexibleQuery()Gets the fexible query.- Returns:
- the fexible query
-
getDescription
String getDescription()Gets the description.- Returns:
- the description
-
addQueryParameter
Adds the query parameter.- Parameters:
paramName- the param nameparamValue- the param value
-
removeQueryParameter
Removes the query parameter.- Parameters:
paramName- the param name
-
setDescription
Sets the description.- Parameters:
description- the new description
-
setLabel
Sets the label.- Parameters:
label- the new label
-