<!--
! CDDL HEADER START
!
! The contents of this file are subject to the terms of the
! Common Development and Distribution License, Version 1.0 only
! (the "License"). You may not use this file except in compliance
! with the License.
!
! You can obtain a copy of the license at
! See the License for the specific language governing permissions
! and limitations under the License.
!
! When distributing Covered Code, include this CDDL HEADER in each
! file and include the License file at
! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
! add the following below this CDDL HEADER, with the fields enclosed
! by brackets "[]" replaced with your own identifying information:
! Portions Copyright [yyyy] [name of copyright owner]
!
! CDDL HEADER END
!
!
! Copyright 2007-2008 Sun Microsystems, Inc.
! -->
xmlns:admpp="http://www.opends.org/admin-preprocessor"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="us-ascii" />
<!--
Template for generating the interface declaration.
-->
<xsl:template name="generate-interface-declaration">
<xsl:value-of select="'/**
'" />
<xsl:call-template name="add-java-comment">
<xsl:with-param name="indent-text" select="' *'" />
<xsl:with-param name="content"
select="concat('A server-side interface for querying ', $this-ufn,
' settings.')" />
</xsl:call-template>
<xsl:value-of select="' * <p>
'" />
<xsl:call-template name="add-java-comment">
<xsl:with-param name="indent-text" select="' *'" />
</xsl:call-template>
<xsl:value-of select="' */
'" />
<xsl:value-of
select="concat('public interface ',
$this-java-class ,
'Cfg extends ')" />
<xsl:choose>
<xsl:when test="boolean($this/@extends)">
<xsl:value-of select="concat($parent-java-class,'Cfg ')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'Configuration '" />
</xsl:otherwise>
</xsl:choose>
<xsl:text>{
</xsl:text>
</xsl:template>
<!--
Template for generating the configuration class getter.
-->
<xsl:template name="generate-configuration-definition-getter">
<xsl:value-of
select="concat(' /**
',
' * Gets the configuration class associated with this ', $this-ufn, '.
',
' *
',
' * @return Returns the configuration class associated with this ', $this-ufn, '.
',
' */
')" />
<xsl:value-of
select="concat(' Class<? extends ', $this-java-class,'Cfg> configurationClass();
')" />
</xsl:template>
<!--
Template for generating the change listener declaration.
-->
<xsl:template name="generate-change-listener-declaration">
<xsl:value-of
select="concat(' /**
',
' * Register to be notified when this ', $this-ufn,' is changed.
',
' *
',
' * @param listener
',
' * The ', $this-ufn,' configuration change listener.
',
' */
')" />
<xsl:value-of
select="concat(' void add', $this-short-java-class,
'ChangeListener(ConfigurationChangeListener<',
$this-java-class,'Cfg> listener);
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Deregister an existing ', $this-ufn,' configuration change listener.
',
' *
',
' * @param listener
',
' * The ', $this-ufn,' configuration change listener.
',
' */
')" />
<xsl:value-of
select="concat(' void remove', $this-short-java-class,
'ChangeListener(ConfigurationChangeListener<',
$this-java-class,'Cfg> listener);
')" />
</xsl:template>
<!--
Template for generating the relation getter declarations.
-->
<xsl:template name="generate-relation-declarations">
<xsl:variable name="name" select="@name" />
<xsl:variable name="ufn">
<xsl:call-template name="name-to-ufn">
<xsl:with-param name="value" select="$name" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="java-relation-name">
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="$name" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="java-class-name">
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="@managed-object-name" />
</xsl:call-template>
</xsl:variable>
<xsl:choose>
<xsl:when test="adm:one-to-one">
<xsl:value-of
select="concat(' /**
',
' * Gets the ', $ufn,'.
',
' *
',
' * @return Returns the ', $ufn,'.
',
' * @throws ConfigException
',
' * If the ', $ufn,' could not be found or it could not
',
' * be successfully decoded.
',
' */
')" />
<xsl:value-of
select="concat(' ', $java-class-name, 'Cfg get',
$java-relation-name, '() throws ConfigException;
')" />
</xsl:when>
<xsl:when test="adm:one-to-zero-or-one">
<xsl:value-of
select="concat(' /**
',
' * Determines whether or not the ', $ufn,' exists.
',
' *
',
' * @return Returns <true> if the ', $ufn,' exists.
',
' */
')" />
<xsl:value-of
select="concat(' boolean has',
$java-relation-name, '();
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Gets the ', $ufn,' if it is present.
',
' *
',
' * @return Returns the ', $ufn,' if it is present.
',
' * @throws ConfigException
',
' * If the ', $ufn,' does not exist or it could not
',
' * be successfully decoded.
',
' */
')" />
<xsl:value-of
select="concat(' ', $java-class-name, 'Cfg get',
$java-relation-name, '() throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Registers to be notified when the ', $ufn,' is added.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration add listener.
',
' * @throws ConfigException
',
' * If the add listener could not be registered.
',
' */
')" />
<xsl:value-of
select="concat(' void add', $java-relation-name,
'AddListener(ConfigurationAddListener<',
$java-class-name,'Cfg> listener) throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Deregisters an existing ', $ufn,' configuration add listener.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration add listener.
',
' */
')" />
<xsl:value-of
select="concat(' void remove', $java-relation-name,
'AddListener(ConfigurationAddListener<',
$java-class-name,'Cfg> listener);
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Registers to be notified the ', $ufn,' is deleted.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration delete listener.
',
' * @throws ConfigException
',
' * If the delete listener could not be registered.
',
' */
')" />
<xsl:value-of
select="concat(' void add', $java-relation-name,
'DeleteListener(ConfigurationDeleteListener<',
$java-class-name,'Cfg> listener) throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Deregisters an existing ', $ufn,' configuration delete listener.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration delete listener.
',
' */
')" />
<xsl:value-of
select="concat(' void remove', $java-relation-name,
'DeleteListener(ConfigurationDeleteListener<',
$java-class-name,'Cfg> listener);
')" />
</xsl:when>
<xsl:when test="adm:one-to-many">
<xsl:variable name="plural-name"
select="adm:one-to-many/@plural-name" />
<xsl:variable name="ufpn">
<xsl:call-template name="name-to-ufn">
<xsl:with-param name="value" select="$plural-name" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="java-relation-plural-name">
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="$plural-name" />
</xsl:call-template>
</xsl:variable>
<xsl:value-of
select="concat(' /**
',
' * Lists the ', $ufpn, '.
',
' *
',
' * @return Returns an array containing the names of the
',
' * ', $ufpn,'.
',
' */
')" />
<xsl:value-of
select="concat(' String[] list', $java-relation-plural-name, '();
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Gets the named ', $ufn,'.
',
' *
',
' * @param name
',
' * The name of the ',$ufn,' to retrieve.
',
' * @return Returns the named ', $ufn,'.
',
' * @throws ConfigException
',
' * If the ', $ufn,' could not be found or it
',
' * could not be successfully decoded.
',
' */
')" />
<xsl:value-of
select="concat(' ', $java-class-name, 'Cfg get',
$java-relation-name, '(String name) throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Registers to be notified when new ', $ufpn,' are added.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration add listener.
',
' * @throws ConfigException
',
' * If the add listener could not be registered.
',
' */
')" />
<xsl:value-of
select="concat(' void add', $java-relation-name,
'AddListener(ConfigurationAddListener<',
$java-class-name,'Cfg> listener) throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Deregisters an existing ', $ufn,' configuration add listener.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration add listener.
',
' */
')" />
<xsl:value-of
select="concat(' void remove', $java-relation-name,
'AddListener(ConfigurationAddListener<',
$java-class-name,'Cfg> listener);
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Registers to be notified when existing ', $ufpn,' are deleted.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration delete listener.
',
' * @throws ConfigException
',
' * If the delete listener could not be registered.
',
' */
')" />
<xsl:value-of
select="concat(' void add', $java-relation-name,
'DeleteListener(ConfigurationDeleteListener<',
$java-class-name,'Cfg> listener) throws ConfigException;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:value-of
select="concat(' /**
',
' * Deregisters an existing ', $ufn,' configuration delete listener.
',
' *
',
' * @param listener
',
' * The ', $ufn,' configuration delete listener.
',
' */
')" />
<xsl:value-of
select="concat(' void remove', $java-relation-name,
'DeleteListener(ConfigurationDeleteListener<',
$java-class-name,'Cfg> listener);
')" />
</xsl:when>
<xsl:otherwise>
<xsl:message terminate="yes">
<xsl:value-of
select="concat('Unknown relation type "', local-name(*), '" in relation "', $name, '".')" />
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
Main document parsing template.
-->
<xsl:template match="/">
<xsl:call-template name="copyright-notice" />
<xsl:value-of
select="concat('package ', $this-package, '.server;
')" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-import-statements">
<xsl:with-param name="imports">
<xsl:for-each select="$this-local-properties">
<xsl:call-template name="get-property-java-imports" >
<xsl:with-param name="interface" select="'server'" />
</xsl:call-template>
</xsl:for-each>
<xsl:if test="$this-local-properties[@multi-valued='true']">
</xsl:if>
<xsl:choose>
<xsl:when test="$this/@extends">
<xsl:if test="$parent-package != $this-package">
<xsl:element name="import">
<xsl:value-of
select="concat($parent-package, '.server.', $parent-java-class, 'Cfg')" />
</xsl:element>
</xsl:if>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="not($this-is-root)">
<import>
</import>
</xsl:if>
<xsl:if test="$this-local-relations">
</xsl:if>
<xsl:if
test="$this-local-relations/adm:one-to-zero-or-one|$this-local-relations/adm:one-to-many">
<import>
</import>
<import>
</import>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-interface-declaration" />
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-configuration-definition-getter" />
<xsl:if test="not($this-is-root)">
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-change-listener-declaration" />
</xsl:if>
<xsl:for-each select="$this-local-properties">
<xsl:sort select="@name" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-property-getter-declaration">
<xsl:with-param name="interface" select="'server'" />
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="$this-local-relations">
<xsl:sort select="@name" />
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:call-template name="generate-relation-declarations" />
</xsl:for-each>
<xsl:text>
</xsl:text>
<xsl:text>}
</xsl:text>
</xsl:template>
</xsl:stylesheet>