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="DeleteObjectStore"/>
10
	</ARCS>
11
</NODE>
12

    
13
<NODE name="DeleteObjectStore" type="DeleteObjectStore">
14
	<DESCRIPTION>Delete the associated ObjectStore</DESCRIPTION>
15
	<PARAMETERS>
16
		<PARAM required="true" type="string" name="objectstoreId" managedBy="system" category="OBJECTSTORE_ID">$params.("objs_id")$</PARAM>
17
	</PARAMETERS>
18
	<ARCS>
19
		<ARC to="DeleteMetaWorkflow"/>
20
	</ARCS>
21
</NODE>
22

    
23
<NODE name="DeleteMetaWorkflow" type="DeleteOpenaireMetaWf">
24
	<DESCRIPTION>Delete the MetaWorkflow</DESCRIPTION>
25
	<PARAMETERS>
26
		<PARAM required="true" type="string" name="metaWfId" managedBy="system">$params.("META_WORKFLOW_ID")$</PARAM>
27
	</PARAMETERS>
28
	<ARCS>
29
		<ARC to="RemoveApiExtraFields"/>
30
	</ARCS>
31
</NODE>
32

    
33
<NODE name="RemoveApiExtraFields" type="RemoveApiExtraFields">
34
	<DESCRIPTION>Reset the extrafields of the api</DESCRIPTION>
35
	<PARAMETERS>
36
		<PARAM required="true" type="string" name="datasourceId" managedBy="system">$params.("dataprovider:id")$</PARAM>
37
		<PARAM required="true" type="string" name="datasourceInterface" managedBy="system">$params.("dataprovider:interface")$</PARAM>
38
		<PARAM required="true" type="string" name="fields" managedBy="system">last_download_total, last_download_date, last_download_objId</PARAM>
39
	</PARAMETERS>
40
	<ARCS>
41
		<ARC to="success"/>
42
	</ARCS>
43
</NODE>
(2-2/2)