Ignore:
Timestamp:
08/28/10 23:54:43 (21 months ago)
Author:
kasper
Message:

Ticket #382: Improved testing and examples. Added classpath scanning and more to configuration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/examples/employees_job.xml

    r982 r983  
    33 
    44        <job-metadata> 
    5                  
     5 
    66        </job-metadata> 
    77 
     
    1010                <columns> 
    1111                        <column id="col_name" path="employees.csv.employees.name" /> 
    12                         <column id="col_email" path="employees.csv.employees.name" /> 
     12                        <column id="col_email" path="employees.csv.employees.email" /> 
    1313                </columns> 
    1414        </source> 
     
    1818                        <descriptor ref="Email standardizer" /> 
    1919                        <input ref="col_email" /> 
    20                         <output id="col_username" name="username" /> 
    21                         <output id="col_domain" name="domain" /> 
     20                        <output id="col_username" name="Email username" /> 
     21                        <output id="col_domain" name="Email domain" /> 
    2222                </transformer> 
    23                  
     23 
    2424                <transformer> 
    2525                        <descriptor ref="Name standardizer" /> 
    2626                        <input ref="col_name" /> 
    27                         <output id="col_firstname" /> 
     27                        <output id="col_firstname" name="First name" /> 
    2828                        <output id="col_lastname" /> 
    2929                        <output id="col_middlename" /> 
     
    4141                        <input ref="col_titulation" /> 
    4242                </analyzer> 
     43 
     44                <analyzer> 
     45                        <descriptor ref="Value distribution" /> 
     46                        <input ref="col_firstname" /> 
     47                </analyzer> 
     48 
     49                <analyzer> 
     50                        <descriptor ref="Value distribution" /> 
     51                        <input ref="col_lastname" /> 
     52                </analyzer> 
     53 
     54                <analyzer> 
     55                        <descriptor ref="Value distribution" /> 
     56                        <input ref="col_username" /> 
     57                </analyzer> 
     58 
     59                <analyzer> 
     60                        <descriptor ref="Value distribution" /> 
     61                        <input ref="col_domain" /> 
     62                </analyzer> 
    4363        </analysis> 
    4464 
Note: See TracChangeset for help on using the changeset viewer.