-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf_tmp.xml
More file actions
83 lines (83 loc) · 3.85 KB
/
conf_tmp.xml
File metadata and controls
83 lines (83 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configuration-metadata>
<configuration-name>DataCleaner configuration</configuration-name>
<configuration-description>Configures DataCleaner's initial environment.
This includes an example datastore and some example reference data.</configuration-description>
<configuration-version>2.3</configuration-version>
<author>eobjects.org</author>
</configuration-metadata>
<datastore-catalog>
<jdbc-datastore name="orderdb" description="DataCleaner example database">
<url>jdbc:hsqldb:res:orderdb;readonly=true</url>
<driver>org.hsqldb.jdbcDriver</driver>
<username>SA</username>
<password/>
</jdbc-datastore>
<csv-datastore name="Country codes" description="Country reference data, courtesy of Graham Rhind">
<filename>examples/countrycodes.csv</filename>
<quote-char>"</quote-char>
<separator-char>;</separator-char>
<encoding>ISO-8859-1</encoding>
<fail-on-inconsistencies>false</fail-on-inconsistencies>
</csv-datastore>
<csv-datastore name="custom datastore" description="Customized datastore for data samples.">
<filename>meep</filename>
<quote-char>"</quote-char>
<separator-char> </separator-char>
<encoding>ISO-8859-1</encoding>
<fail-on-inconsistencies>false</fail-on-inconsistencies>
</csv-datastore>
</datastore-catalog>
<reference-data-catalog>
<dictionaries>
<datastore-dictionary name="Country names" description="List of country names">
<datastore-name>Country codes</datastore-name>
<column-path>Country name</column-path>
</datastore-dictionary>
</dictionaries>
<synonym-catalogs>
<datastore-synonym-catalog name="Country code (2 letter)" description="Retrieve ISO 3166-1 alpha-2 code of country/territory">
<datastore-name>Country codes</datastore-name>
<master-term-column-path>ISO 3166-2</master-term-column-path>
<synonym-column-path>ISO 3166-3</synonym-column-path>
<synonym-column-path>ISO Numeric</synonym-column-path>
<synonym-column-path>Country name</synonym-column-path>
<synonym-column-path>Synonym1</synonym-column-path>
<synonym-column-path>Synonym2</synonym-column-path>
<synonym-column-path>Synonym3</synonym-column-path>
</datastore-synonym-catalog>
<datastore-synonym-catalog name="Country code (3 letter)" description="Retrieve ISO 3166-1 alpha-3 code of country/territory">
<datastore-name>Country codes</datastore-name>
<master-term-column-path>ISO 3166-3</master-term-column-path>
<synonym-column-path>ISO 3166-2</synonym-column-path>
<synonym-column-path>ISO Numeric</synonym-column-path>
<synonym-column-path>Country name</synonym-column-path>
<synonym-column-path>Synonym1</synonym-column-path>
<synonym-column-path>Synonym2</synonym-column-path>
<synonym-column-path>Synonym3</synonym-column-path>
</datastore-synonym-catalog>
</synonym-catalogs>
</reference-data-catalog>
<multithreaded-taskrunner max-threads="30"/>
<storage-provider>
<combined>
<collections-storage>
<berkeley-db>
<clean-directory-on-startup>true</clean-directory-on-startup>
</berkeley-db>
</collections-storage>
<row-annotation-storage>
<in-memory max-rows-threshold="1000"/>
</row-annotation-storage>
</combined>
</storage-provider>
<classpath-scanner>
<package recursive="true">org.eobjects.analyzer.beans</package>
<package>org.eobjects.analyzer.result.renderer</package>
<package>org.eobjects.datacleaner.output.beans</package>
<package>org.eobjects.datacleaner.panels</package>
<package recursive="true">org.eobjects.datacleaner.widgets.result</package>
<package recursive="true">com.hi</package>
</classpath-scanner>
</configuration>