6594ccfa03bec5b6ac1d157a5a83758ac8a87488
[sdnc/northbound.git] / ueb-listener / src / main / resources / normalizeTagNames.xslt
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet version="1.0"
3     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4     <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
5     <xsl:template match="@*|node()">
6         <xsl:copy>
7             <xsl:apply-templates select="@*|node()" />
8         </xsl:copy>
9     </xsl:template>
10
11     <xsl:template match="vf-license-model/feature-group-list/feature-group/entitlement-pool-list/entitlement-pool/entitlement-metric/value/text()[.='# of software instances']">num of software instances</xsl:template>
12     <xsl:template match="vf-license-model/feature-group-list/feature-group/entitlement-pool-list/entitlement-pool/firstClassCitizenId"/>
13 </xsl:stylesheet>
14