Difference between revisions of "Retriever Config"
Line 6: | Line 6: | ||
This element does not have attributes but accepts the following children: | This element does not have attributes but accepts the following children: | ||
− | * Description | + | * [[Description]] |
* [[#GenericRetriever|GenericRetriever]] | * [[#GenericRetriever|GenericRetriever]] | ||
* [[#TableRetriever|TableRetriever]] | * [[#TableRetriever|TableRetriever]] | ||
Line 23: | Line 23: | ||
|} | |} | ||
and the subelements: | and the subelements: | ||
− | * Description | + | * [[Description]] |
* [[DataRetriever]] | * [[DataRetriever]] | ||
Line 62: | Line 62: | ||
|} | |} | ||
and the subelements: | and the subelements: | ||
− | * Description | + | * [[Description]] |
* [[DataRetriever]] | * [[DataRetriever]] | ||
Line 76: | Line 76: | ||
|} | |} | ||
and the subelements: | and the subelements: | ||
− | * Description | + | * [[Description]] |
* [[DataRetriever]] | * [[DataRetriever]] |
Revision as of 16:05, 30 March 2012
Contents
Description
The RetrieverConfig element allows you to define helper for use in DataHandler data transformations.
GreenVulcano® ESB Configuration
This element does not have attributes but accepts the following children:
GenericRetriever
This element allows you to define helper running SQL select and return the first field of the first selected record as string. It has the parameters:
Attribute | Type | Description |
---|---|---|
type | fixed | retriever (unmodifiable) |
class | fixed | it.greenvulcano.gvesb.datahandling.utils.GenericRetriever |
and the subelements:
TableRetriever
This element allows you to define helper running SQL select and return the result as an XML string in following form:
<?xml version="1.0" encoding="UTF-8"?>
<RowSet>
<data>
<row>
<col>value1</col>
<col>value2</col>
<col>value3</col>
</row>
<row>
<col>value4</col>
<col>value5</col>
<col>value6</col>
</row>
..
<row>
<col>valuex</col>
<col>valuey</col>
<col>valuez</col>
</row>
</data>
</RowSet>
It has the parameters:
Attribute | Type | Description |
---|---|---|
type | fixed | retriever (unmodifiable) |
class | fixed | it.greenvulcano.gvesb.datahandling.utils.TableRetriever |
and the subelements:
JavaScriptRetriever
It has the parameters:
Attribute | Type | Description |
---|---|---|
type | fixed | retriever (unmodifiable) |
class | fixed | it.greenvulcano.gvesb.datahandling.utils.JavaScriptRetriever |
and the subelements: