1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2013
- 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>FixMonitorOptionGUID</name>
- <javaclass>com.cognos.cm.plugin.cm.upgrade.common.FixOptionValueType</javaclass>
- <cLibName/>
- <version>1.001</version>
- <searchPaths>
- <searchPath>/adminFolder//queryServiceTask</searchPath>
- </searchPaths>
- <properties>
- <property>options</property>
- </properties>
- <classNamesForDeployment>
- <className>queryServiceTask</className>
- </classNamesForDeployment>
- <parameter name="patches">
- <item type="monitorOptionGUID" replace="bus:guid"/>
- </parameter>
- </plugin>
- <plugin type="Upgrade" category="Mandatory" importAction="PreImport" componentID="CM">
- <name>FixContentTaskOptionType</name>
- <javaclass>com.cognos.cm.plugin.cm.upgrade.caspian.FixContentTaskOptionType</javaclass>
- <cLibName/>
- <version>1.001</version>
- <searchPaths>
- <searchPath>/adminFolder//contentTask//historyDetailRequestArguments</searchPath>
- </searchPaths>
- <properties>
- <property>options</property>
- </properties>
- <classNamesForDeployment>
- <className>historyDetailRequestArguments</className>
- </classNamesForDeployment>
- </plugin>
- <plugin type="Upgrade" category="Mandatory" importAction="PreImport" componentID="CM">
- <name>FixTenantsContentConflictResolutionOption</name>
- <javaclass>com.cognos.cm.plugin.cm.upgrade.caspian.FixTenantsContentConflictResolutionOption</javaclass>
- <cLibName/>
- <version>1.001</version>
- <searchPaths>
- <searchPath>/adminFolder//importDeployment/history/historyDetailRequestArguments</searchPath>
- <searchPath>/adminFolder//importDeployment</searchPath>
- </searchPaths>
- <properties>
- <property>options</property>
- </properties>
- <classNamesForDeployment>
- <className>importDeployment</className>
- <!-- deployment histories are ignored during import and therefore
- upgrade of history details is not required -->
- </classNamesForDeployment>
- </plugin>
- </plugins>
|