attribute-type.xsl revision 1008
883N/A<!--
883N/A ! CDDL HEADER START
883N/A !
883N/A ! The contents of this file are subject to the terms of the
883N/A ! Common Development and Distribution License, Version 1.0 only
883N/A ! (the "License"). You may not use this file except in compliance
883N/A ! with the License.
883N/A !
883N/A ! You can obtain a copy of the license at
883N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
883N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
883N/A ! See the License for the specific language governing permissions
883N/A ! and limitations under the License.
883N/A !
883N/A ! When distributing Covered Code, include this CDDL HEADER in each
883N/A ! file and include the License file at
883N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
883N/A ! add the following below this CDDL HEADER, with the fields enclosed
883N/A ! by brackets "[]" replaced with your own identifying information:
883N/A ! Portions Copyright [yyyy] [name of copyright owner]
883N/A !
883N/A ! CDDL HEADER END
883N/A !
883N/A !
883N/A ! Portions Copyright 2007 Sun Microsystems, Inc.
883N/A ! -->
883N/A<xsl:stylesheet version="1.0" xmlns:adm="http://www.opends.org/admin"
883N/A xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
883N/A <!--
883N/A Templates for processing attribute type properties.
883N/A -->
883N/A <xsl:template match="adm:attribute-type" mode="java-value-imports">
883N/A <import>org.opends.server.types.AttributeType</import>
</xsl:template>
<xsl:template match="adm:attribute-type" mode="java-value-type">
<xsl:value-of select="'AttributeType'" />
</xsl:template>
<xsl:template match="adm:attribute-type"
mode="java-definition-type">
<xsl:value-of select="'AttributeTypePropertyDefinition'" />
</xsl:template>
</xsl:stylesheet>