Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<eventActions  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///C:/Developement/trunk/master-controller/src/main/resources/schemas/eventactions.xsd">
	<eventAction actionConfigurationId="New Zeland" description="Description">
		<enhance>
			<tag name="AIRE_FORECAST"/>
			<resume/>
		</enhance>
	</eventAction>
	<eventAction actionConfigurationId="newId" description="Description2">
		<enhance>
			<tag name="Denver"/>
			<suspend/>
		</enhance>
	</eventAction>
	<eventAction actionConfigurationId="EDEN_ID" description="Description3">
		<enhance>
			<tag name="EDEN_FORECAST"/>
			<repeatinterval interval="3600"/>
		</enhance>
	</eventAction>
	<eventAction actionConfigurationId="EXPORT_ID" description="Description4">
		<oneoff>
			<cardinaltime interval="900" reference="2004-01-01T00:00:00.000+00:00"/>
			<tag name="EXPORT_CURRENT"/>
		</oneoff>
	</eventAction>
    <eventAction actionConfigurationId="IMPORT_ID" description="Description5">
        <oneoff>
            <cardinaltime interval="900" reference="2004-01-01T00:00:00.000+00:00" unit="hour"/>
            <tag name="EXPORT_CURRENT"/>
        </oneoff>
    </eventAction>
</eventActions>


You can download all active (default) configurations in this same format by clicking download. The single action configuration format is available for download from the list of versions under the same action id.

...