...
Name | type | cardinality | description |
system | String | 1..1 | The id of the provider to use |
Example
Code Block | |||||||
---|---|---|---|---|---|---|---|
| |||||||
<?xml version="1.0" encoding="UTF-8"?> <config xmlns="urn:com.cohga.server.config#1.0" xmlns:externaldb="urn:com.cohga.selection.transfer.db#1.0" xmlns:client="urn:com.cohga.html.client#1.0"> <externaldb:transfer id="pathway"> <name>Pathway</name> <datasource>datasource.pathway</datasource> <table>PTH_GIST</table> <column>GISREF</column> <put lpad="15"/> <get trim="true"/> <clearwhen>both</clearwhen> <entity id="property"> <key>PRUPIX</key> </entity> </externaldb:transfer> <externaldb:transfer id="pathway.test"> <name>Pathway</name> <datasource>datasource.pathway.test</datasource> <table>PTH_GIST</table> <column>GISREF</column> <put lpad="15"/> <get trim="true"/> <clearwhen>both</clearwhen> <entity id="property"> <key>PRUPIX</key> </entity> </externaldb:transfer> <externaldb:transfer id="hansen"> <acl>acl.hansen</acl> <name>Hansen</name> <datasource>datasource.hansen</datasource> <table>HANSEN</table> <column>COMPKEY</column> <key>COMPKEY</key> <clearwhen>before</clearwhen> <entity id="council_buildings"> <value name="COMPTYPE">BLDG</value> </entity> <entity id="council_carparks"> <value name="COMPTYPE">CARP</value> </entity> </externaldb:transfer> <client:config id="test"> ... <item action="com.cohga.selection.Get" system="pathway"> <tooltip title="Pathway" text="Get from Pathway"/> </item> ... </client:config> </config> |
...