Project

General

Profile

1
<NODE name="SET_INFO" isStart="true" type="SetProviderInfo">
2
	<DESCRIPTION>Set information about current provider</DESCRIPTION>
3
	<PARAMETERS>
4
		<PARAM required="true" type="string" name="providerId" managedBy="system">$params.("dataprovider:id")$</PARAM>
5
		<PARAM required="true" type="string" name="providerName" managedBy="system">$params.("dataprovider:name")$</PARAM>
6
		<PARAM required="true" type="string" name="api" managedBy="system">$params.("dataprovider:interface")$</PARAM>
7
	</PARAMETERS>
8
	<ARCS>
9
		<ARC to="DeleteMetaWorkflow"/>
10
	</ARCS>
11
</NODE>
12

    
13
<NODE name="DeleteMetaWorkflow" type="DeleteOpenaireMetaWf">
14
	<DESCRIPTION>Delete the MetaWorkflow</DESCRIPTION>
15
	<PARAMETERS>
16
		<PARAM required="true" type="string" name="metaWfId" managedBy="system">$params.("META_WORKFLOW_ID")$</PARAM>
17
	</PARAMETERS>
18
	<ARCS>
19
		<ARC to="DeleteMDStoreNative"/>
20
	</ARCS>
21
</NODE>
22

    
23
<NODE name="DeleteMDStoreNative" type="DeleteMDStore">
24
	<DESCRIPTION>Delete the native mdstore</DESCRIPTION>
25
	<PARAMETERS>
26
		<PARAM required="true" type="string" name="mdstoreId" managedBy="system" category="MDSTORE_ID">$params.("harv_id")$</PARAM>
27
	</PARAMETERS>
28
	<ARCS>
29
		<ARC to="DeleteMDStoreDatacite"/>
30
		<ARC to="DeleteMDStorePublication"/>
31
	</ARCS>
32
</NODE>
33

    
34
<NODE name="DeleteMDStoreDatacite" type="DeleteMDStore">
35
	<DESCRIPTION>Delete the IMEF mdstore</DESCRIPTION>
36
	<PARAMETERS>
37
		<PARAM required="true" type="string" name="mdstoreId" managedBy="system" category="MDSTORE_ID">$params.("tranODF_id")$</PARAM>
38
	</PARAMETERS>
39
	<ARCS>
40
		<ARC to="RemoveApiExtraFields"/>
41
	</ARCS>
42
</NODE>
43

    
44
<NODE name="DeleteMDStorePublication" type="DeleteMDStore">
45
	<DESCRIPTION>Delete the IMEF mdstore</DESCRIPTION>
46
	<PARAMETERS>
47
		<PARAM required="true" type="string" name="mdstoreId" managedBy="system" category="MDSTORE_ID">$params.("tranOAF_id")$</PARAM>
48
	</PARAMETERS>
49
	<ARCS>
50
		<ARC to="RemoveApiExtraFields"/>
51
	</ARCS>
52
</NODE>
53

    
54
<NODE name="RemoveApiExtraFields" type="RemoveApiExtraFields" isJoin="true">
55
	<DESCRIPTION>Reset the extrafields of the api</DESCRIPTION>
56
	<PARAMETERS>
57
		<PARAM required="true" type="string" name="datasourceId" managedBy="system">$params.("dataprovider:id")$</PARAM>
58
		<PARAM required="true" type="string" name="datasourceInterface" managedBy="system">$params.("dataprovider:interface")$</PARAM>
59
		<PARAM required="true" type="string" name="fields" managedBy="system">last_collection_total, last_collection_date, last_collection_mdId, last_aggregation_total, last_aggregation_date, last_aggregation_mdId</PARAM>
60
	</PARAMETERS>
61
	<ARCS>
62
		<ARC to="success"/>
63
	</ARCS>
64
</NODE>
(2-2/3)