@Target(value=PARAMETER) @Retention(value=SOURCE) @Documented public @interface Query
Connector scope.
Query can be either String or org.mule.common.query.DsqlQuery.
The latter is not recommended as it can break your connector compatibility.
String parameter is annotated, you
can assume your query has been translated to your connector native query language by @QueryTranslator.
ie, the @QueryTranslator is required.
org.mule.common.query.DsqlQuery is annotated, you must do the translation within your processor.| Modifier and Type | Optional Element and Description |
|---|---|
QueryOperator[] |
disabledOperators
Specify operators disabled in the displayed DSQL language.
|
boolean |
limit
Limit feature is enabled or disabled
|
boolean |
offset
Offset feature is enabled or disabled
|
boolean |
orderBy
OrderBy feature is enabled or disabled
|
public abstract QueryOperator[] disabledOperators
public abstract boolean limit
public abstract boolean offset
public abstract boolean orderBy
Copyright © 2010–2015 MuleSoft, Inc.. All rights reserved.