public class DataBoundAIRequest extends AsyncDataBoundOperationParams
id
factoryCreated, factoryProperties
Constructor and Description |
---|
DataBoundAIRequest() |
DataBoundAIRequest(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
java.lang.String[] |
getExcludeFieldNames()
Optional list of field names to exclude.
|
java.lang.Integer |
getMaxRetries()
The maximum number of retries for any one particular request to AI.
|
static DataBoundAIRequest |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
DataBoundAIRequest |
setExcludeFieldNames(java.lang.String... excludeFieldNames)
Optional list of field names to exclude.
|
DataBoundAIRequest |
setMaxRetries(java.lang.Integer maxRetries)
The maximum number of retries for any one particular request to AI.
|
getComponent, getDataSource, setComponent, setDataSource
getCancellationController, setCancellationController
getRef, getRef, internalSetID
applyFactoryProperties, doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsDoubleArray, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsLong, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, isFactoryCreated, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttributeAsJavaObject, setFactoryCreated
public DataBoundAIRequest()
public DataBoundAIRequest(com.google.gwt.core.client.JavaScriptObject jsObj)
public static DataBoundAIRequest getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public DataBoundAIRequest setExcludeFieldNames(java.lang.String... excludeFieldNames)
excludeFieldNames
- New excludeFieldNames value. Default value is nullDataBoundAIRequest
instance, for chaining setter callsFieldName
public java.lang.String[] getExcludeFieldNames()
FieldName
public DataBoundAIRequest setMaxRetries(java.lang.Integer maxRetries)
Note that multiple AI requests may be involved
in processing the data-bound AI request. This limit is the maximum number of retries of any one request. For example, if
there are 2 requests made to AI, then each one would be submitted at most 1 + maxRetries
number of times
for up to 2 * (1 + maxRetries)
total requests.
If unset, then defaultMaxRetries
will be used.
maxRetries
- New maxRetries value. Default value is nullDataBoundAIRequest
instance, for chaining setter callspublic java.lang.Integer getMaxRetries()
Note that multiple AI requests may be involved
in processing the data-bound AI request. This limit is the maximum number of retries of any one request. For example, if
there are 2 requests made to AI, then each one would be submitted at most 1 + maxRetries
number of times
for up to 2 * (1 + maxRetries)
total requests.
If unset, then defaultMaxRetries
will be used.