disassembleAgentNotificationTask.xslt 1.1 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ASV
  5. (C) Copyright IBM Corp. 2005, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" exclude-result-prefixes="bus xtsext">
  9. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
  10. <xsl:template match="/">
  11. <xsl:if test="/root/*[local-name()='humanTask']">
  12. <morphletResponse>
  13. <taskOptions>
  14. <xsl:copy-of select="/root/*[local-name()='createNotificationManualTask']"/>
  15. </taskOptions>
  16. <taskName><xsl:value-of select="/root/*[local-name()='humanTask']/*[local-name()='defaultName']"/></taskName>
  17. <subscription>true</subscription>
  18. </morphletResponse>
  19. </xsl:if>
  20. </xsl:template>
  21. </xsl:stylesheet>