Project

General

Profile

1 26600 sandro.lab
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
4
	xmlns:sec="http://cxf.apache.org/configuration/security" xmlns:wsa="http://cxf.apache.org/ws/addressing"
5
	xmlns:p="http://www.springframework.org/schema/p" xmlns:http="http://cxf.apache.org/transports/http/configuration"
6
	xmlns:t="http://dnetlib.eu/springbeans/t" xmlns:template="http://dnetlib.eu/springbeans/template"
7
	xmlns:util="http://www.springframework.org/schema/util"
8
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
9
                                    http://cxf.apache.org/ws/addressing http://cxf.apache.org/schemas/ws-addr-conf.xsd
10
                                    http://cxf.apache.org/configuration/security http://cxf.apache.org/schemas/configuration/security.xsd
11
                                    http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
12
                            http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
13
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
14
                            http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd">
15
16
17
	<bean id="claimedMigrationWorkflow"
18
		class="eu.dnetlib.enabling.manager.msro.wf.SchedulableWorkflowLancher"
19
		p:graph-ref="claimedMigrationGraph" p:processRegistry-ref="msroProcessRegistry"
20
		p:cronExpression="0 59 3 * * ?"
21
		p:enabled="false" />
22
23
	<bean id="claimedMigrationGraph" class="eu.dnetlib.workflow.sarasvati.SarasvatiGraphFactory"
24
		p:engine-ref="msroWfEngine"
25
		p:definition="classpath:/eu/dnetlib/actionmanager/hack/claimed-migration.wf.xml" />
26
27
	<bean id="wfNodeRegisterMissingSets"
28
		class="eu.dnetlib.actionmanager.hack.RegisterMissingSets" scope="prototype"
29
		p:core-ref="hbaseActionManagerCore" />
30
31
	<bean id="wfNodePerformClaimedSQL"
32
		class="eu.dnetlib.actionmanager.hack.PerformSQLJobNode" scope="prototype"
33
		p:dbName="${hack.claimed.migration.db}"
34
		p:query="${hack.claimed.migration.query.sql}"
35
		p:countQuery="${hack.claimed.migration.count.query.sql}"
36
		p:xslt="${hack.claimed.migration.query.xslt}"
37
		p:dbServiceLocator-ref="dbServiceLocator"/>
38
39
	<bean id="wfNodeStoreClaimedInfoPackages"
40
		class="eu.dnetlib.actionmanager.hack.StoreInfoPackageJobNode" scope="prototype"
41
		p:resultSetClientFactory-ref="resultSetClientFactory"
42
		p:core-ref="hbaseActionManagerCore"
43
		p:splitRuleId="${hack.claimed.migration.splitRule.id}"
44
		p:defaultTrust="${hack.claimed.migration.default.trust}"
45
		p:countingRSFactory-ref="workflowCountingResultSetFactory"/>
46
47
</beans>