1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2019, 2020
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <plugins xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./cmPluginDescriptor.xsd">
- <!--
- This file contains plugins that are ported to multiple streams.
- Each plugin must be included only once: i.e. it should have unique name and only one version.
- This will ensure that it will be executed only once regardless of which version of a product it
- was introduced in.
- -->
- <plugin type="Upgrade" category="Mandatory" importAction="PreImport" componentID="CM">
- <name>UpgradeExecutionPrompt</name>
- <javaclass>com.cognos.cm.plugin.cm.upgrade.endor.UpgradeExecutionPrompt</javaclass>
- <cLibName/>
- <version>1.001</version>
- <searchPaths>
- <searchPath>//*[@objectClass='report' or @objectClass='query' or @objectClass='reportView' or @objectClass='analysis' or @objectClass='interactiveReport' or @objectClass='dataSet2' or @objectClass='reportTemplate']</searchPath>
- </searchPaths>
- <properties>
- <property>executionPrompt</property>
- <property>options</property>
- </properties>
- <classNamesForDeployment>
- <className>report</className>
- <className>query</className>
- <className>reportView</className>
- <className>analysis</className>
- <className>dataSet2</className>
- <className>interactiveReport</className>
- <className>reportTemplate</className>
- </classNamesForDeployment>
- </plugin>
- <plugin type="Upgrade" category="Mandatory" importAction="PreImport" componentID="CM">
- <name>UpgradeDataSetFormat</name>
- <javaclass>com.cognos.cm.plugin.cm.upgrade.endorr7.UpgradeDataSetFormat</javaclass>
- <cLibName/>
- <version>1.001</version>
- <searchPaths>
- <searchPath>//output[not(@format)]</searchPath>
- </searchPaths>
- <properties>
- <property>format</property>
- <property>dataType</property>
- <property>dataDescriptor</property>
- </properties>
- <classNamesForDeployment>
- <className>output</className>
- </classNamesForDeployment>
- </plugin>
- </plugins>
|