void |
TriggerApi.compileDictionary(TriggerDictionaryName dictionaryName) |
Compile the trigger dictionary identified by dictionaryName into binary format.
|
void |
TriggerApi.copyDictionary(TriggerDictionaryName dictionaryName,
TriggerDictionaryName newName) |
Copy the trigger dictionary identified by dictionaryName to a new dictionary with
newName .
|
void |
TriggerApi.createTrigger(TriggerDictionaryName dictionaryName,
TriggerDefinition trigger) |
Add trigger to the dictionary identified by dictionaryName .
|
void |
TriggerApi.deleteDictionary(TriggerDictionaryName dictionaryName) |
Delete a trigger dictionary identified by dictionaryName
.
|
void |
TriggerApi.deleteTrigger(TriggerDictionaryName dictionaryName,
java.lang.String triggerName) |
Delete trigger named triggerName for the dictionary identified by
dictionaryName .
|
void |
TriggerApi.exportDictionary(TriggerDictionaryName dictionaryName,
java.io.OutputStream output) |
Export trigger dictionary by name to output .
|
java.lang.Iterable<TriggerDictionaryInfo> |
TriggerApi.getDictionaries(TriggerDictionaryName prefix,
int offset,
int rows) |
Get all dictionaries.
|
TriggerDictionaryInfo |
TriggerApi.getDictionary(TriggerDictionaryName dictionaryName) |
|
java.util.Map<java.util.Locale,java.lang.Long> |
TriggerApi.getLocales(TriggerDictionaryName dictionaryName,
java.lang.String prefix) |
Get a map of locales for dictionary specified by dictionaryName .
|
TriggerDefinition |
TriggerApi.getTrigger(TriggerDictionaryName dictionaryName,
java.lang.String triggerName) |
|
java.lang.Iterable<TriggerDefinition> |
TriggerApi.getTriggers(TriggerDictionaryName dictionaryName,
java.util.Locale locale,
java.lang.String prefix,
int offset,
int rows) |
Get triggers for dictionary identified by dictionaryName .
|
default void |
TriggerApi.importDictionary(byte[] input,
TriggerDictionaryName newName,
boolean replace) |
Deprecated.
|
void |
TriggerApi.importDictionary(java.io.InputStream input,
TriggerDictionaryName newName,
boolean replace) |
Import a trigger dictionary from input .
|
IngestDocument |
TriggerApi.process(TriggerDictionaryName dictionaryName,
IngestDocument document,
boolean published) |
Process document according to dictionaryName .
|
void |
TriggerApi.publishDictionary(TriggerDictionaryName dictionaryName) |
Publish the most recently compiled binary dictionary identified by dictionaryName .
|
static java.lang.String |
TriggerDictionaryName.toString(TriggerDictionaryName name) |
Get the dictionary name for name as a string.
|
void |
TriggerApi.updateTrigger(TriggerDictionaryName dictionaryName,
TriggerDefinition trigger) |
Update trigger for the dictionary identified by dictionaryName .
|