12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2009
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <backgroundTask name="archiveTask" taskHandler="com.cognos.cm.backgroundTask.GenericTaskHandler" runType="RUN_ONCE" taskAction="com.ibm.cognos.cm.archiving.ArchivalTaskAction" reportHandler="com.ibm.cognos.cm.archiving.ArchivalTaskReporterHandler" metricsHandler="com.cognos.cm.backgroundTask.ArchivalTaskMetricsHandler" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="backgroundTask.xsd">
- <runOptions>
- <queueName>archiveQueue</queueName>
- <!--
- When specified the outputFormats define the report output versions of which outputFormat type should be archived by this task.
- A report output version of a different outputFormat type will not be archived.
- This only supports single file report output versions. Multiple file report output versions like HTML with graphics cannot be selectively archived.
- <outputFormats>
- <outputFormat>PDF</outputFormat>
- <outputFormat>XML</outputFormat>
- </outputFormats>
- -->
- </runOptions>
- </backgroundTask>
|