source: vlo/trunk/vlo_webapp/src/main/resources/importerConfig_catalog_clarin_eu.xml @ 2072

Last change on this file since 2072 was 2072, checked in by herste, 12 years ago

small change to default configuration to 1) clear old junk from the VLO every time and 2) not double-import the lrt inventory. Lari changed the OAI-Harvester configuration so that the lrt inventory also appears under the self-harvest. It does not need a separate ingest anymore.

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
4
5  <bean id="importerConfig" class="eu.clarin.cmdi.vlo.importer.ImporterConfig">
6    <property name="deleteAllFirst" value="true"/> <!-- You can delete everything first -->
7<!--    <property name="printMapping" value="true"/> Can print the mapping of facets to xpath patterns for every xsd, so it can be checked manually. -->
8    <property name="dataRoots">
9      <list>
10        <bean class="eu.clarin.cmdi.vlo.importer.DataRoot">
11          <property name="originName" value="MPI IMDI Archive"/>
12          <property name="rootFile"
13            value="/lat/apache/htdocs/oai-harvester/mpi-self-harvest/harvested/results/cmdi/"/>
14            <property name="prefix" value="http://catalog.clarin.eu/"/>
15            <property name="tostrip" value="/lat/apache/htdocs/"/>
16
17        </bean>
18        <bean class="eu.clarin.cmdi.vlo.importer.DataRoot">
19          <property name="originName" value="CMDI Providers"/>
20          <property name="rootFile"
21            value="/lat/apache/htdocs/oai-harvester/cmdi-providers/harvested/results/cmdi/"/>
22            <property name="prefix" value="http://catalog.clarin.eu/"/>
23            <property name="tostrip" value="/lat/apache/htdocs/"/>
24
25        </bean>
26         <bean class="eu.clarin.cmdi.vlo.importer.DataRoot">
27          <property name="originName" value="OLAC Metadata Providers"/>
28          <property name="rootFile"
29            value="/lat/apache/htdocs/oai-harvester/olac-and-dc-providers/harvested/results/cmdi/"/>
30             <property name="prefix" value="http://catalog.clarin.eu/"/>
31             <property name="tostrip" value="/lat/apache/htdocs/"/>
32        </bean>
33      </list>
34    </property>
35  </bean>
36
37
38</beans>
39
Note: See TracBrowser for help on using the repository browser.