Interface ITextGetRequest
- All Superinterfaces:
IGetRequest
- All Known Subinterfaces:
IOQLTextGetRequest
,IXPathTextGetRequest
This interface represents a textual retrieval request. Implementations of this interface contain a textual
retrieval text which will be parsed to determine which objects must be retrieved.
-
Method Summary
Modifier and TypeMethodDescriptionReturns a new object to set parameter values for this query.Returns the object with parameters values.getQuery()
Returns the retrieval text of this request.void
setParameters
(IParameterMap parameterMap) Specifies the parameter values of the query.void
Sets the retrieval text of this request.Methods inherited from interface com.mendix.systemwideinterfaces.connectionbus.requests.types.IGetRequest
getQueryTimeout, getRetrievalSchema, setQueryTimeout, setRetrievalSchema, setRetrieveCount, shouldRetrieveCount
-
Method Details
-
getQuery
String getQuery()Returns the retrieval text of this request. -
setQuery
Sets the retrieval text of this request. -
setParameters
Specifies the parameter values of the query.- Parameters:
parameterMap
- the parameter values of the query
-
createParameterMap
IParameterMap createParameterMap()Returns a new object to set parameter values for this query. This object must be set for the request by the method setParameters(..).- Returns:
- a new object to set parameter values for this query
-
getParameters
IParameterMap getParameters()Returns the object with parameters values.- Returns:
- the parameter values of the query.
-