metaMO.xsl revision 1418
321N/A<!--
321N/A ! CDDL HEADER START
321N/A !
321N/A ! The contents of this file are subject to the terms of the
940N/A ! Common Development and Distribution License, Version 1.0 only
940N/A ! (the "License"). You may not use this file except in compliance
178N/A ! with the License.
178N/A !
178N/A ! You can obtain a copy of the license at
224N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
295N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
295N/A ! See the License for the specific language governing permissions
295N/A ! and limitations under the License.
824N/A !
824N/A ! When distributing Covered Code, include this CDDL HEADER in each
824N/A ! file and include the License file at
824N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
824N/A ! add the following below this CDDL HEADER, with the fields enclosed
824N/A ! by brackets "[]" replaced with your own identifying information:
824N/A ! Portions Copyright [yyyy] [name of copyright owner]
824N/A !
824N/A ! CDDL HEADER END
824N/A !
824N/A !
824N/A ! Portions Copyright 2007 Sun Microsystems, Inc.
824N/A ! -->
824N/A<xsl:stylesheet version="1.0" xmlns:adm="http://www.opends.org/admin"
824N/A xmlns:admpp="http://www.opends.org/admin-preprocessor"
824N/A xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
824N/A xmlns:exsl="http://exslt.org/common">
824N/A <xsl:import href="java-utilities.xsl" />
824N/A <xsl:import href="preprocessor.xsl" />
824N/A <xsl:import href="property-types.xsl" />
178N/A <xsl:output method="text" encoding="us-ascii" />
1928N/A <!--
1928N/A Template for generating the class declaration.
1928N/A -->
1928N/A <xsl:template name="generate-meta-class-declaration">
1928N/A <xsl:value-of select="'/**&#xa;'" />
1928N/A <xsl:call-template name="add-java-comment">
178N/A <xsl:with-param name="indent-text" select="' *'" />
178N/A <xsl:with-param name="content"
178N/A select="concat('An interface for querying the ', $this-ufn,
224N/A ' managed object definition meta information.')" />
179N/A </xsl:call-template>
183N/A <xsl:value-of select="' * &lt;p&gt;&#xa;'" />
183N/A <xsl:call-template name="add-java-comment">
183N/A <xsl:with-param name="indent-text" select="' *'" />
183N/A <xsl:with-param name="content" select="$this/adm:synopsis" />
183N/A </xsl:call-template>
2439N/A <xsl:value-of select="' */&#xa;'" />
2439N/A <xsl:value-of
2439N/A select="concat('public final class ',
2439N/A $this-java-class,
2439N/A 'CfgDefn extends ')" />
2439N/A <xsl:choose>
2439N/A <xsl:when test="$this-is-abstract">
2439N/A <xsl:value-of
366N/A select="concat('AbstractManagedObjectDefinition&lt;',
366N/A $this-java-class, 'CfgClient, ',
366N/A $this-java-class, 'Cfg&gt; {&#xa;')" />
366N/A </xsl:when>
366N/A <xsl:otherwise>
366N/A <xsl:value-of
366N/A select="concat('ManagedObjectDefinition&lt;',
366N/A $this-java-class, 'CfgClient, ',
366N/A $this-java-class, 'Cfg&gt; {&#xa;')" />
366N/A </xsl:otherwise>
366N/A </xsl:choose>
366N/A </xsl:template>
366N/A <!--
222N/A Template for generating the meta class body.
222N/A -->
222N/A <xsl:template name="generate-meta-class-body">
222N/A <!--
222N/A Singleton configuration definition instance.
222N/A -->
2414N/A <xsl:value-of
222N/A select="concat(' // The singleton configuration definition instance.&#xa;',
222N/A ' private static final ',
222N/A $this-java-class ,
222N/A 'CfgDefn INSTANCE = new ', $this-java-class, 'CfgDefn();&#xa;')" />
222N/A <!--
222N/A Generate enumerations defined by this managed object..
222N/A -->
222N/A <xsl:for-each
222N/A select="$this-local-properties[adm:syntax/adm:enumeration]">
222N/A <xsl:sort select="@name" />
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:call-template name="generate-enumeration" />
222N/A </xsl:for-each>
222N/A <!--
222N/A Generate declarations for properties defined or
222N/A overridden by this managed object.
222N/A -->
222N/A <xsl:for-each select="$this-local-properties">
222N/A <xsl:sort select="@name" />
366N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:call-template name="generate-property-declaration" />
222N/A </xsl:for-each>
222N/A <!--
222N/A Generate declarations for relations.
222N/A -->
2414N/A <xsl:for-each select="$this-local-relations">
222N/A <xsl:sort select="@name" />
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:call-template name="generate-relation-declaration" />
222N/A </xsl:for-each>
222N/A <!--
222N/A Generate constructors for properties defined or
222N/A overridden by this managed object.
222N/A -->
222N/A <xsl:for-each select="$this-local-properties">
222N/A <xsl:sort select="@name" />
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:call-template name="generate-property-constructor" />
222N/A </xsl:for-each>
222N/A <!--
222N/A Generate constructors for relations.
222N/A -->
222N/A <xsl:for-each select="$this-local-relations">
366N/A <xsl:sort select="@name" />
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:call-template name="generate-relation-constructor" />
222N/A </xsl:for-each>
222N/A <!--
222N/A Configuration definition singleton getter.
2414N/A -->
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:text>&#xa;</xsl:text>
222N/A <xsl:value-of select="' /**&#xa;'" />
222N/A <xsl:call-template name="add-java-comment">
222N/A <xsl:with-param name="indent-text" select="' *'" />
222N/A <xsl:with-param name="content"
222N/A select="concat('Get the ', $this-ufn,' configuration definition singleton.')" />
222N/A </xsl:call-template>
222N/A <xsl:value-of select="' *&#xa;'" />
222N/A <xsl:call-template name="add-java-comment">
222N/A <xsl:with-param name="indent-text" select="' *'" />
222N/A <xsl:with-param name="indent-text2" select="' * '" />
222N/A <xsl:with-param name="content"
222N/A select="concat('@return Returns the ', $this-ufn,
222N/A ' configuration definition singleton.')" />
222N/A </xsl:call-template>
222N/A <xsl:value-of select="' */&#xa;'" />
222N/A <xsl:value-of
222N/A select="concat(' public static ',
222N/A $this-java-class ,
366N/A 'CfgDefn getInstance() {&#xa;',
222N/A ' return INSTANCE;&#xa;',
289N/A ' }&#xa;')" />
289N/A <!--
289N/A Private constructor.
289N/A -->
289N/A <xsl:text>&#xa;</xsl:text>
289N/A <xsl:text>&#xa;</xsl:text>
289N/A <xsl:text>&#xa;</xsl:text>
289N/A <xsl:value-of
289N/A select="concat(' /**&#xa;',
289N/A ' * Private constructor.&#xa;',
289N/A ' */&#xa;',
289N/A ' private ',
289N/A $this-java-class ,
289N/A 'CfgDefn() {&#xa;')" />
289N/A <xsl:choose>
2439N/A <xsl:when test="boolean($this/@extends)">
289N/A <xsl:value-of
321N/A select="concat(' super(&quot;',
321N/A $this/@name,
321N/A '&quot;, ',
321N/A $parent-java-class,
321N/A 'CfgDefn.getInstance());&#xa;')" />
321N/A </xsl:when>
321N/A <xsl:otherwise>
321N/A <xsl:value-of
321N/A select="concat(' super(&quot;',
321N/A $this/@name,
321N/A '&quot;, null);&#xa;')" />
321N/A </xsl:otherwise>
321N/A </xsl:choose>
321N/A <xsl:value-of select="concat(' }&#xa;')" />
321N/A <!--
321N/A Create configuration view factory methods for non-abstract definitions
321N/A -->
321N/A <xsl:if test="not($this-is-abstract)">
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <!--
321N/A Generate configuration client factory method.
321N/A -->
321N/A <xsl:value-of
321N/A select="concat(' /**&#xa;',
321N/A ' * {@inheritDoc}&#xa;',
321N/A ' */&#xa;',
321N/A ' public ',
321N/A $this-java-class,
321N/A 'CfgClient createClientConfiguration(&#xa;',
321N/A ' ManagedObject&lt;? extends ',
321N/A $this-java-class,
321N/A 'CfgClient&gt; impl) {&#xa;',
321N/A ' return new ',
321N/A $this-java-class ,
321N/A 'CfgClientImpl(impl);&#xa;',
321N/A ' }&#xa;')" />
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <!--
321N/A Generate configuration server factory method.
2439N/A -->
321N/A <xsl:value-of
321N/A select="concat(' /**&#xa;',
321N/A ' * {@inheritDoc}&#xa;',
321N/A ' */&#xa;',
321N/A ' public ',
321N/A $this-java-class,
321N/A 'Cfg createServerConfiguration(&#xa;',
321N/A ' ServerManagedObject&lt;? extends ',$this-java-class,'Cfg&gt; impl) {&#xa;',
321N/A ' return new ',
321N/A $this-java-class ,
321N/A 'CfgServerImpl(impl);&#xa;',
321N/A ' }&#xa;')" />
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <!--
321N/A Generate configuration server class getter..
321N/A -->
321N/A <xsl:value-of
321N/A select="concat(' /**&#xa;',
321N/A ' * {@inheritDoc}&#xa;',
321N/A ' */&#xa;',
321N/A ' public Class&lt;',
321N/A $this-java-class,
321N/A 'Cfg&gt; getServerConfigurationClass() {&#xa;',
321N/A ' return ',
321N/A $this-java-class ,
321N/A 'Cfg.class;&#xa;',
321N/A ' }&#xa;')" />
321N/A </xsl:if>
321N/A <!--
321N/A Generate property definition getters for all properties.
321N/A -->
321N/A <xsl:for-each select="$this-all-properties">
321N/A <xsl:sort select="@name" />
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:call-template name="generate-property-definition-getter" />
321N/A </xsl:for-each>
321N/A <!--
321N/A Generate relation definition getters for all relations.
321N/A -->
321N/A <xsl:for-each select="$this-all-relations">
2439N/A <xsl:sort select="@name" />
2439N/A <xsl:text>&#xa;</xsl:text>
2439N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:call-template name="generate-relation-definition-getter" />
2031N/A </xsl:for-each>
321N/A <!--
321N/A Managed object class implementations.
321N/A -->
321N/A <xsl:if test="not($this-is-abstract)">
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
321N/A <xsl:text>&#xa;</xsl:text>
2439N/A <xsl:call-template name="generate-client-impl-class" />
321N/A <xsl:text>&#xa;</xsl:text>
333N/A <xsl:text>&#xa;</xsl:text>
333N/A <xsl:text>&#xa;</xsl:text>
333N/A <xsl:call-template name="generate-server-impl-class" />
333N/A </xsl:if>
333N/A </xsl:template>
333N/A <!--
333N/A Generate managed object client class implementation.
333N/A -->
333N/A <xsl:template name="generate-client-impl-class">
333N/A <!--
333N/A Declaration.
333N/A -->
333N/A <xsl:value-of
333N/A select="concat(' /**&#xa;',
333N/A ' * Managed object client implementation.&#xa;',
333N/A ' */&#xa;',
333N/A ' private static class ',
333N/A $this-java-class ,
333N/A 'CfgClientImpl implements&#xa; ',
333N/A $this-java-class ,
333N/A 'CfgClient {&#xa;')" />
333N/A <xsl:text>&#xa;</xsl:text>
333N/A <!--
333N/A Private instance.
333N/A -->
2439N/A <xsl:value-of
333N/A select="concat(' // Private implementation.&#xa;',
367N/A ' private ManagedObject&lt;? extends ',
367N/A $this-java-class,
367N/A 'CfgClient&gt; impl;&#xa;')" />
367N/A <!--
2342N/A Private constructor.
367N/A -->
367N/A <xsl:text>&#xa;</xsl:text>
367N/A <xsl:text>&#xa;</xsl:text>
367N/A <xsl:text>&#xa;</xsl:text>
2439N/A <xsl:value-of
367N/A select="concat(' // Private constructor.&#xa;',
2165N/A ' private ',
2165N/A $this-java-class,
2165N/A 'CfgClientImpl(&#xa;',
2165N/A ' ManagedObject&lt;? extends ',
2165N/A $this-java-class,
2165N/A 'CfgClient&gt; impl) {&#xa;',
2250N/A ' this.impl = impl;&#xa;',
2165N/A ' }&#xa;')" />
2353N/A <!--
2353N/A Getters/Setters for all properties.
2353N/A -->
2353N/A <xsl:for-each select="$this-all-properties">
2353N/A <xsl:sort select="@name" />
2353N/A <xsl:text>&#xa;</xsl:text>
2353N/A <xsl:text>&#xa;</xsl:text>
2353N/A <xsl:text>&#xa;</xsl:text>
2165N/A <xsl:call-template name="generate-property-getter">
2165N/A <xsl:with-param name="interface" select="'client'" />
2165N/A </xsl:call-template>
2165N/A <xsl:text>&#xa;</xsl:text>
2165N/A <xsl:text>&#xa;</xsl:text>
2165N/A <xsl:text>&#xa;</xsl:text>
2165N/A <xsl:call-template name="generate-property-setter" />
2165N/A </xsl:for-each>
2165N/A <!--
2165N/A Relation methods.
2165N/A -->
2439N/A <xsl:for-each select="$this-all-relations">
2439N/A <xsl:sort select="@name" />
2439N/A <xsl:text>&#xa;</xsl:text>
2250N/A <xsl:text>&#xa;</xsl:text>
2439N/A <xsl:text>&#xa;</xsl:text>
2165N/A <xsl:call-template name="generate-client-relation-methods" />
824N/A </xsl:for-each>
295N/A <!--
295N/A Managed object definition getter.
295N/A -->
295N/A <xsl:text>&#xa;</xsl:text>
295N/A <xsl:text>&#xa;</xsl:text>
295N/A <xsl:text>&#xa;</xsl:text>
295N/A <xsl:value-of
295N/A select="concat(' /**&#xa;',
295N/A ' * {@inheritDoc}&#xa;',
824N/A ' */&#xa;',
824N/A ' public ManagedObjectDefinition&lt;? extends ', $this-java-class,'CfgClient, ? extends ', $this-java-class,'Cfg&gt; definition() {&#xa;',
295N/A ' return INSTANCE;&#xa;',
2270N/A ' }&#xa;')" />
2270N/A <!--
2270N/A Property provider view.
2270N/A -->
2270N/A <xsl:text>&#xa;</xsl:text>
2270N/A <xsl:text>&#xa;</xsl:text>
2270N/A <xsl:text>&#xa;</xsl:text>
2270N/A <xsl:value-of
2270N/A select="concat(' /**&#xa;',
2270N/A ' * {@inheritDoc}&#xa;',
2270N/A ' */&#xa;',
2270N/A ' public PropertyProvider properties() {&#xa;',
2270N/A ' return impl;&#xa;',
2270N/A ' }&#xa;')" />
2270N/A <!--
2270N/A Commit method.
2270N/A -->
2270N/A <xsl:text>&#xa;</xsl:text>
2270N/A <xsl:text>&#xa;</xsl:text>
824N/A <xsl:text>&#xa;</xsl:text>
824N/A <xsl:value-of
824N/A select="concat(' /**&#xa;',
824N/A ' * {@inheritDoc}&#xa;',
824N/A ' */&#xa;',
824N/A ' public void commit() throws ManagedObjectAlreadyExistsException,&#xa;',
824N/A ' MissingMandatoryPropertiesException, ConcurrentModificationException,&#xa;',
824N/A ' OperationRejectedException, AuthorizationException,&#xa;',
824N/A ' CommunicationException {&#xa;',
824N/A ' impl.commit();&#xa;',
824N/A ' }&#xa;')" />
824N/A <xsl:text>&#xa;</xsl:text>
824N/A <xsl:value-of select="' }&#xa;'" />
824N/A </xsl:template>
295N/A <!--
295N/A Generate managed object server class implementation.
295N/A -->
295N/A <xsl:template name="generate-server-impl-class">
295N/A <!--
295N/A Declaration.
295N/A -->
295N/A <xsl:value-of
295N/A select="concat(' /**&#xa;',
824N/A ' * Managed object server implementation.&#xa;',
824N/A ' */&#xa;',
295N/A ' private static class ',
1240N/A $this-java-class ,
1240N/A 'CfgServerImpl implements&#xa; ',
1240N/A $this-java-class ,
1240N/A 'Cfg {&#xa;')" />
1240N/A <xsl:text>&#xa;</xsl:text>
1240N/A <!--
1240N/A Private instance.
1240N/A -->
1240N/A <xsl:value-of
1240N/A select="concat(' // Private implementation.&#xa;',
1240N/A ' private ServerManagedObject&lt;? extends ', $this-java-class, 'Cfg&gt; impl;&#xa;')" />
1240N/A <!--
1240N/A Private constructor.
1240N/A -->
1240N/A <xsl:text>&#xa;</xsl:text>
1240N/A <xsl:text>&#xa;</xsl:text>
1240N/A <xsl:text>&#xa;</xsl:text>
1240N/A <xsl:value-of
1240N/A select="concat(' // Private constructor.&#xa;',
1240N/A ' private ',
1240N/A $this-java-class,
1240N/A 'CfgServerImpl(ServerManagedObject&lt;? extends ', $this-java-class, 'Cfg&gt; impl) {&#xa;',
2014N/A ' this.impl = impl;&#xa;',
1240N/A ' }&#xa;')" />
2622N/A <!--
2622N/A Generate all the change listener methods - one for each managed
2622N/A object in the hierarchy.
2622N/A -->
2622N/A <xsl:if test="not($this-is-root)">
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:call-template name="generate-change-listener" />
2622N/A </xsl:if>
2622N/A <!--
2622N/A Getters/Setters for all properties.
2622N/A -->
2622N/A <xsl:for-each select="$this-all-properties">
2622N/A <xsl:sort select="@name" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:call-template name="generate-property-getter">
2622N/A <xsl:with-param name="interface" select="'server'" />
2622N/A </xsl:call-template>
2623N/A </xsl:for-each>
2623N/A <!--
2623N/A Relation methods.
2623N/A -->
2623N/A <xsl:for-each select="$this-all-relations">
2623N/A <xsl:sort select="@name" />
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:call-template name="generate-server-relation-methods" />
2623N/A </xsl:for-each>
2623N/A <!--
2623N/A Configuration definition getter.
2623N/A -->
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public ManagedObjectDefinition&lt;? extends ', $this-java-class,'CfgClient, ? extends ', $this-java-class,'Cfg&gt; definition() {&#xa;',
2623N/A ' return INSTANCE;&#xa;',
2623N/A ' }&#xa;')" />
2623N/A <!--
2623N/A Property provider view.
2623N/A -->
2623N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public PropertyProvider properties() {&#xa;',
2622N/A ' return impl;&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <!--
2622N/A Configuration entry DN getter.
2622N/A -->
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public DN dn() {&#xa;',
2622N/A ' return impl.getDN();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of select="' }&#xa;'" />
2622N/A </xsl:template>
2622N/A <!--
2622N/A Generate a property definition constructor.
2622N/A -->
1240N/A <xsl:template name="generate-property-declaration">
1240N/A <xsl:variable name="java-prop-name">
1240N/A <xsl:call-template name="name-to-java-constant">
1240N/A <xsl:with-param name="value" select="@name" />
1240N/A </xsl:call-template>
1240N/A </xsl:variable>
1240N/A <xsl:variable name="type">
1240N/A <xsl:call-template name="get-property-definition-type" />
1240N/A </xsl:variable>
1240N/A <xsl:variable name="generic-type">
1240N/A <xsl:call-template name="get-property-definition-generic-type" />
1240N/A </xsl:variable>
1240N/A <xsl:variable name="pdtype">
1240N/A <xsl:choose>
1240N/A <xsl:when test="string-length($generic-type) != 0">
1240N/A <xsl:value-of
1240N/A select="concat($type, '&lt;', $generic-type, '&gt;')" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:value-of select="$type" />
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A </xsl:variable>
2622N/A <xsl:value-of
2622N/A select="concat(' // The &quot;',
2622N/A @name,
2622N/A '&quot; property definition.&#xa;',
2622N/A ' private static final ', $pdtype, ' PD_', $java-prop-name, ';&#xa;')" />
2622N/A </xsl:template>
2622N/A <!--
2622N/A Generate a property definition constructor.
2622N/A -->
2622N/A <xsl:template name="generate-property-constructor">
2622N/A <xsl:variable name="java-prop-name">
2622N/A <xsl:call-template name="name-to-java-constant">
2622N/A <xsl:with-param name="value" select="@name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2623N/A <xsl:variable name="type">
2623N/A <xsl:call-template name="get-property-definition-type" />
2623N/A </xsl:variable>
2623N/A <xsl:variable name="generic-type">
2623N/A <xsl:call-template name="get-property-definition-generic-type" />
2623N/A </xsl:variable>
2623N/A <xsl:variable name="value-type">
2623N/A <xsl:call-template name="get-property-java-type" />
2623N/A </xsl:variable>
2623N/A <xsl:value-of
2623N/A select="concat(' // Build the &quot;', @name, '&quot; property definition.&#xa;',
2623N/A ' static {&#xa;')" />
2623N/A <xsl:choose>
2623N/A <xsl:when test="string-length($generic-type) != 0">
2623N/A <xsl:value-of
2623N/A select="concat(' ', $type, '.Builder&lt;', $generic-type, '&gt; builder = ', $type, '.createBuilder(INSTANCE, &quot;',@name, '&quot;);&#xa;')" />
2623N/A </xsl:when>
2623N/A <xsl:otherwise>
2623N/A <xsl:value-of
2623N/A select="concat(' ', $type, '.Builder builder = ', $type, '.createBuilder(INSTANCE, &quot;',@name, '&quot;);&#xa;')" />
2623N/A </xsl:otherwise>
2623N/A </xsl:choose>
2623N/A <xsl:if test="@multi-valued='true'">
2623N/A <xsl:value-of
2623N/A select="' builder.setOption(PropertyOption.MULTI_VALUED);&#xa;'" />
2623N/A </xsl:if>
2623N/A <xsl:if test="@read-only='true'">
2623N/A <xsl:value-of
2622N/A select="' builder.setOption(PropertyOption.READ_ONLY);&#xa;'" />
2622N/A </xsl:if>
2622N/A <xsl:if test="@monitoring='true'">
2622N/A <xsl:value-of
2622N/A select="' builder.setOption(PropertyOption.MONITORING);&#xa;'" />
2622N/A </xsl:if>
2622N/A <xsl:if
2622N/A test="adm:requires-admin-action/adm:server-restart|adm:requires-admin-action/adm:component-restart|adm:requires-admin-action/adm:other">
2622N/A <xsl:value-of
2622N/A select="' builder.setOption(PropertyOption.REQUIRES_ADMIN_ACTION);&#xa;'" />
2622N/A </xsl:if>
2622N/A <xsl:if test="@mandatory='true'">
2622N/A <xsl:value-of
2622N/A select="' builder.setOption(PropertyOption.MANDATORY);&#xa;'" />
2622N/A </xsl:if>
2622N/A <xsl:if test="@hidden='true'">
2622N/A <xsl:value-of
2622N/A select="' builder.setOption(PropertyOption.HIDDEN);&#xa;'" />
2622N/A </xsl:if>
2622N/A <xsl:choose>
2622N/A <xsl:when test="@mandatory='true'">
2622N/A <xsl:value-of
2622N/A select="concat(' builder.setDefaultBehaviorProvider(new UndefinedDefaultBehaviorProvider&lt;', $value-type,'&gt;());&#xa;')" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:if test="not(adm:default-behavior)">
2622N/A <xsl:message terminate="yes">
2622N/A <xsl:value-of
2623N/A select="concat('No default behavior defined for non-mandatory property &quot;', @name,
2623N/A '&quot;.')" />
2623N/A </xsl:message>
2623N/A </xsl:if>
2623N/A <xsl:choose>
2623N/A <xsl:when test="adm:default-behavior/adm:undefined">
2623N/A <xsl:value-of
2622N/A select="concat(' builder.setDefaultBehaviorProvider(new UndefinedDefaultBehaviorProvider&lt;', $value-type,'&gt;());&#xa;')" />
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:default-behavior/adm:alias">
2622N/A <xsl:value-of
2622N/A select="concat(' builder.setDefaultBehaviorProvider(new AliasDefaultBehaviorProvider&lt;', $value-type,'&gt;(INSTANCE, &quot;', @name, '&quot;));&#xa;')" />
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:default-behavior/adm:defined">
2622N/A <xsl:value-of
2622N/A select="concat(' DefaultBehaviorProvider&lt;', $value-type,'&gt; provider = ',
2622N/A 'new DefinedDefaultBehaviorProvider&lt;', $value-type,'&gt;(')" />
2622N/A <xsl:for-each
2622N/A select="adm:default-behavior/adm:defined/adm:value">
2622N/A <xsl:value-of
2622N/A select="concat('&quot;', normalize-space(), '&quot;')" />
2622N/A <xsl:if test="position() != last()">
2622N/A <xsl:value-of select="', '" />
2622N/A </xsl:if>
2622N/A </xsl:for-each>
2622N/A <xsl:value-of select="');&#xa;'" />
2622N/A <xsl:value-of
2622N/A select="' builder.setDefaultBehaviorProvider(provider);&#xa;'" />
2622N/A </xsl:when>
2622N/A <xsl:when
2622N/A test="adm:default-behavior/adm:inherited/adm:relative">
2622N/A <xsl:value-of
2622N/A select="concat(' DefaultBehaviorProvider&lt;', $value-type,'&gt; provider = ',
2622N/A 'new RelativeInheritedDefaultBehaviorProvider&lt;', $value-type,'&gt;(')" />
2622N/A <xsl:variable name="managed-object-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value"
2622N/A select="adm:default-behavior/adm:inherited/adm:relative/@managed-object-name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:variable name="property-name"
2622N/A select="adm:default-behavior/adm:inherited/adm:relative/@property-name" />
1094N/A <xsl:variable name="offset"
1094N/A select="adm:default-behavior/adm:inherited/adm:relative/@offset" />
1094N/A <xsl:value-of
1094N/A select="concat($managed-object-name, 'CfgDefn.getInstance(), &quot;', $property-name, '&quot;, ', $offset, ');&#xa;')" />
1094N/A <xsl:value-of
1094N/A select="' builder.setDefaultBehaviorProvider(provider);&#xa;'" />
1094N/A </xsl:when>
1094N/A <xsl:when
1094N/A test="adm:default-behavior/adm:inherited/adm:absolute">
1094N/A <xsl:value-of
1094N/A select="concat(' DefaultBehaviorProvider&lt;', $value-type,'&gt; provider = ',
1094N/A 'new AbsoluteInheritedDefaultBehaviorProvider&lt;', $value-type,'&gt;(')" />
1094N/A <xsl:variable name="property-name"
1094N/A select="adm:default-behavior/adm:inherited/adm:absolute/@property-name" />
1094N/A <xsl:variable name="path"
1094N/A select="adm:default-behavior/adm:inherited/adm:absolute/@path" />
1094N/A <xsl:value-of
1094N/A select="concat('ManagedObjectPath.valueOf(&quot;', $path, '&quot;), &quot;', $property-name, '&quot;);&#xa;')" />
1094N/A <xsl:value-of
1094N/A select="' builder.setDefaultBehaviorProvider(provider);&#xa;'" />
1094N/A </xsl:when>
1094N/A <xsl:otherwise>
2014N/A <xsl:message terminate="yes">
1094N/A <xsl:value-of
1948N/A select="concat('Unrecognized default behavior type for property &quot;', @name,
1948N/A '&quot;.')" />
1948N/A </xsl:message>
1948N/A </xsl:otherwise>
1948N/A </xsl:choose>
1948N/A </xsl:otherwise>
1948N/A </xsl:choose>
1948N/A <xsl:call-template name="get-property-definition-ctor" />
1948N/A <xsl:value-of
1948N/A select="concat(' PD_', $java-prop-name, ' = builder.getInstance();&#xa;')" />
1948N/A <xsl:value-of
1948N/A select="concat(' INSTANCE.registerPropertyDefinition(PD_', $java-prop-name, ');&#xa;')" />
1948N/A <xsl:value-of select="' }&#xa;'" />
1948N/A </xsl:template>
1948N/A <!--
1948N/A Generate a relation definition declaration.
1094N/A -->
1094N/A <xsl:template name="generate-relation-declaration">
1094N/A <xsl:variable name="relation-name">
1094N/A <xsl:choose>
1094N/A <xsl:when test="adm:one-to-many">
1094N/A <xsl:value-of select="adm:one-to-many/@plural-name" />
1094N/A </xsl:when>
1094N/A <xsl:otherwise>
1094N/A <xsl:value-of select="@name" />
1094N/A </xsl:otherwise>
1094N/A </xsl:choose>
1094N/A </xsl:variable>
1094N/A <xsl:variable name="java-relation-name">
1094N/A <xsl:call-template name="name-to-java-constant">
1094N/A <xsl:with-param name="value" select="$relation-name" />
1094N/A </xsl:call-template>
1094N/A </xsl:variable>
2622N/A <xsl:variable name="java-managed-object-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value" select="@managed-object-name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:value-of
2622N/A select="concat(' // The &quot;',
2622N/A $relation-name,
2622N/A '&quot; relation definition.&#xa;',
2622N/A ' private static final ')" />
2622N/A <xsl:choose>
2622N/A <xsl:when test="adm:one-to-one">
2622N/A <xsl:text>SingletonRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:one-to-zero-or-one">
2622N/A <xsl:text>OptionalRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:one-to-many">
2622N/A <xsl:text>InstantiableRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2623N/A <xsl:message terminate="yes">
2623N/A <xsl:value-of
2623N/A select="concat('Unknown relation type &quot;', local-name(*), '&quot; in relation &quot;', @name, '&quot;.')" />
2623N/A </xsl:message>
2623N/A </xsl:otherwise>
2623N/A </xsl:choose>
2623N/A <xsl:value-of
2623N/A select="concat($java-managed-object-name, 'CfgClient, ', $java-managed-object-name, 'Cfg&gt; RD_', $java-relation-name, ';&#xa;')" />
2623N/A </xsl:template>
2623N/A <!--
2623N/A Generate a relation definition constructor.
2623N/A -->
2623N/A <xsl:template name="generate-relation-constructor">
2623N/A <xsl:variable name="relation-name">
2623N/A <xsl:choose>
2623N/A <xsl:when test="adm:one-to-many">
2623N/A <xsl:value-of select="adm:one-to-many/@plural-name" />
2623N/A </xsl:when>
2623N/A <xsl:otherwise>
2623N/A <xsl:value-of select="@name" />
2623N/A </xsl:otherwise>
2623N/A </xsl:choose>
2623N/A </xsl:variable>
2623N/A <xsl:variable name="java-relation-name">
2623N/A <xsl:call-template name="name-to-java-constant">
2623N/A <xsl:with-param name="value" select="$relation-name" />
2623N/A </xsl:call-template>
2623N/A </xsl:variable>
2622N/A <xsl:variable name="java-managed-object-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value" select="@managed-object-name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:value-of
2622N/A select="concat(' // Build the &quot;', $relation-name, '&quot; relation definition.&#xa;',
2622N/A ' static {&#xa;',
2622N/A ' RD_', $java-relation-name, ' = new ')" />
2622N/A <xsl:choose>
2622N/A <xsl:when test="adm:one-to-one">
2622N/A <xsl:text>SingletonRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:one-to-zero-or-one">
2622N/A <xsl:text>OptionalRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:when test="adm:one-to-many">
2622N/A <xsl:text>InstantiableRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:message terminate="yes">
2622N/A <xsl:value-of
2622N/A select="concat('Unknown relation type &quot;', local-name(*), '&quot; in relation &quot;', @name, '&quot;.')" />
2622N/A </xsl:message>
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A <xsl:value-of
2622N/A select="concat($java-managed-object-name, 'CfgClient, ', $java-managed-object-name, 'Cfg&gt;(&#xa;',
2622N/A ' INSTANCE, &quot;', @name, '&quot;, ')" />
2622N/A <xsl:if test="adm:one-to-many">
2622N/A <xsl:value-of
2622N/A select="concat('&quot;', adm:one-to-many/@plural-name, '&quot;, ')" />
2622N/A </xsl:if>
2622N/A <xsl:value-of
2622N/A select="concat($java-managed-object-name, 'CfgDefn.getInstance());&#xa;')" />
2623N/A <xsl:value-of
2623N/A select="concat(' INSTANCE.registerRelationDefinition(RD_', $java-relation-name,');&#xa;')" />
2623N/A <xsl:value-of select="' }&#xa;'" />
2623N/A </xsl:template>
2623N/A <!--
2623N/A Generate a property definition getter for a locally defined
2623N/A or overriden property.
2622N/A -->
2622N/A <xsl:template name="generate-property-definition-getter">
2622N/A <xsl:variable name="java-prop-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value" select="@name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:variable name="java-prop-name-constant">
2622N/A <xsl:call-template name="name-to-java-constant">
2622N/A <xsl:with-param name="value" select="@name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:variable name="type">
2622N/A <xsl:call-template name="get-property-definition-type" />
2622N/A </xsl:variable>
2622N/A <xsl:variable name="generic-type">
2622N/A <xsl:call-template name="get-property-definition-generic-type" />
2622N/A </xsl:variable>
2622N/A <xsl:variable name="pdtype">
2622N/A <xsl:choose>
2622N/A <xsl:when test="string-length($generic-type) != 0">
2622N/A <xsl:value-of
2622N/A select="concat($type, '&lt;', $generic-type, '&gt;')" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:value-of select="$type" />
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
1590N/A </xsl:variable>
1590N/A <xsl:value-of
1590N/A select="concat(' /**&#xa;',
1590N/A ' * Get the &quot;',
1590N/A @name,
1590N/A '&quot; property definition.&#xa;')" />
1590N/A <xsl:if test="adm:synopsis">
1590N/A <xsl:value-of select="' * &lt;p&gt;&#xa;'" />
1590N/A <xsl:call-template name="add-java-comment">
1590N/A <xsl:with-param name="indent-text" select="' *'" />
1590N/A <xsl:with-param name="content" select="adm:synopsis" />
1590N/A </xsl:call-template>
1590N/A </xsl:if>
1590N/A <xsl:if test="adm:description">
1590N/A <xsl:value-of select="' * &lt;p&gt;&#xa;'" />
1590N/A <xsl:call-template name="add-java-comment">
1590N/A <xsl:with-param name="indent-text" select="' *'" />
1590N/A <xsl:with-param name="content" select="adm:description" />
1590N/A </xsl:call-template>
1590N/A </xsl:if>
1590N/A <xsl:choose>
1590N/A <xsl:when
1590N/A test="adm:profile[@name='preprocessor']/admpp:managed-object[@name=$this-name and @package=$this-package]">
2014N/A <xsl:value-of
1590N/A select="concat(' *&#xa;',
1948N/A ' * @return Returns the &quot;',
1948N/A @name,
1948N/A '&quot; property definition.&#xa;',
1948N/A ' */&#xa;',
1948N/A ' public ',
1948N/A $pdtype,
1948N/A ' get',
1948N/A $java-prop-name,
1948N/A 'PropertyDefinition() {&#xa;' ,
1948N/A ' return PD_',
1948N/A $java-prop-name-constant ,
1948N/A ';&#xa;' ,
1948N/A ' }&#xa;')" />
1948N/A </xsl:when>
1948N/A <xsl:otherwise>
1948N/A <xsl:value-of
2622N/A select="concat(' *&#xa;',
2622N/A ' * @return Returns the &quot;',
2622N/A @name,
2622N/A '&quot; property definition.&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public ',
2622N/A $pdtype,
2622N/A ' get',
2622N/A $java-prop-name,
2622N/A 'PropertyDefinition() {&#xa;' ,
2622N/A ' return ',
2622N/A $parent-java-class, 'CfgDefn.getInstance().get',
2622N/A $java-prop-name,
2622N/A 'PropertyDefinition();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A </xsl:template>
2622N/A <!--
2622N/A Generate a relation definition getter.
2622N/A -->
2622N/A <xsl:template name="generate-relation-definition-getter">
2622N/A <xsl:variable name="relation-name">
2622N/A <xsl:choose>
2622N/A <xsl:when test="adm:one-to-many">
2622N/A <xsl:value-of select="adm:one-to-many/@plural-name" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:value-of select="@name" />
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A </xsl:variable>
2622N/A <xsl:variable name="java-relation-name">
2622N/A <xsl:call-template name="name-to-java">
2623N/A <xsl:with-param name="value" select="$relation-name" />
2623N/A </xsl:call-template>
2623N/A </xsl:variable>
2623N/A <xsl:variable name="java-relation-name-constant">
2623N/A <xsl:call-template name="name-to-java-constant">
2623N/A <xsl:with-param name="value" select="$relation-name" />
2623N/A </xsl:call-template>
2623N/A </xsl:variable>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * Get the &quot;',
2623N/A $relation-name,
2623N/A '&quot; relation definition.&#xa;',
2623N/A ' *&#xa;',
2623N/A ' * @return Returns the &quot;',
2623N/A $relation-name,
2623N/A '&quot; relation definition.&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public ')" />
2623N/A <xsl:choose>
2623N/A <xsl:when test="adm:one-to-one">
2623N/A <xsl:text>SingletonRelationDefinition&lt;</xsl:text>
2623N/A </xsl:when>
2623N/A <xsl:when test="adm:one-to-zero-or-one">
2623N/A <xsl:text>OptionalRelationDefinition&lt;</xsl:text>
2623N/A </xsl:when>
2623N/A <xsl:when test="adm:one-to-many">
2623N/A <xsl:text>InstantiableRelationDefinition&lt;</xsl:text>
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:message terminate="yes">
2622N/A <xsl:value-of
2622N/A select="concat('Unknown relation type &quot;', local-name(*), '&quot; in relation &quot;', @name, '&quot;.')" />
2622N/A </xsl:message>
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A <xsl:variable name="java-managed-object-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value" select="@managed-object-name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:choose>
2622N/A <xsl:when
2622N/A test="adm:profile[@name='preprocessor']/admpp:managed-object[@name=$this-name and @package=$this-package]">
2622N/A <xsl:value-of
2622N/A select="concat($java-managed-object-name, 'CfgClient,',
2622N/A $java-managed-object-name, 'Cfg&gt; get',
2622N/A $java-relation-name,
2622N/A 'RelationDefinition() {&#xa;' ,
2622N/A ' return RD_',
2622N/A $java-relation-name-constant,
2622N/A ';&#xa;' ,
2622N/A ' }&#xa;')" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:value-of
2623N/A select="concat($java-managed-object-name, 'CfgClient,',
2623N/A $java-managed-object-name, 'Cfg&gt; get',
2623N/A $java-relation-name,
2623N/A 'RelationDefinition() {&#xa;' ,
2623N/A ' return ',
2623N/A $parent-java-class, 'CfgDefn.getInstance().get',
2623N/A $java-relation-name,
2622N/A 'RelationDefinition();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A </xsl:template>
2622N/A <!--
2622N/A Generate a property value getter.
2622N/A -->
2622N/A <xsl:template name="generate-property-getter">
2622N/A <xsl:param name="interface" select="/.." />
2622N/A <xsl:variable name="java-prop-name">
2622N/A <xsl:call-template name="name-to-java">
2622N/A <xsl:with-param name="value" select="@name" />
2622N/A </xsl:call-template>
2622N/A </xsl:variable>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public ')" />
2622N/A <xsl:choose>
2622N/A <xsl:when test="string(@multi-valued) != 'true'">
2622N/A <xsl:choose>
2622N/A <xsl:when test="adm:default-behavior/adm:defined">
2622N/A <!--
2622N/A The method is guaranteed to return a value since there is a
2622N/A well-defined default value.
2622N/A -->
2622N/A <xsl:call-template name="get-property-java-primitive-type" />
2622N/A </xsl:when>
2622N/A <xsl:when
2622N/A test="$interface = 'server' and @mandatory = 'true'">
2622N/A <!--
2622N/A The method is guaranteed to return a value in the server interface, but
2622N/A not necessarily in the client, since the mandatory property might not
444N/A have been created yet.
444N/A -->
444N/A <xsl:call-template name="get-property-java-primitive-type" />
444N/A </xsl:when>
444N/A <xsl:otherwise>
444N/A <xsl:call-template name="get-property-java-type" />
444N/A </xsl:otherwise>
444N/A </xsl:choose>
444N/A </xsl:when>
444N/A <xsl:otherwise>
444N/A <xsl:value-of select="'SortedSet&lt;'" />
444N/A <xsl:call-template name="get-property-java-type" />
444N/A <xsl:value-of select="'&gt;'" />
444N/A </xsl:otherwise>
444N/A </xsl:choose>
444N/A <xsl:choose>
444N/A <xsl:when test="adm:syntax/adm:boolean">
444N/A <xsl:value-of select="' is'" />
444N/A </xsl:when>
444N/A <xsl:otherwise>
444N/A <xsl:value-of select="' get'" />
444N/A </xsl:otherwise>
2014N/A </xsl:choose>
444N/A <xsl:choose>
1948N/A <xsl:when test="string(@multi-valued) != 'true'">
1948N/A <xsl:value-of
1948N/A select="concat($java-prop-name, '() {&#xa;',
1948N/A ' return impl.getPropertyValue',
1948N/A '(INSTANCE.get', $java-prop-name ,
1948N/A 'PropertyDefinition());&#xa;' ,
1948N/A ' }&#xa;')" />
1948N/A </xsl:when>
1948N/A <xsl:otherwise>
1948N/A <xsl:value-of
1948N/A select="concat($java-prop-name, '() {&#xa;',
1948N/A ' return impl.getPropertyValues',
1948N/A '(INSTANCE.get', $java-prop-name ,
1948N/A 'PropertyDefinition());&#xa;' ,
1948N/A ' }&#xa;')" />
1948N/A </xsl:otherwise>
444N/A </xsl:choose>
444N/A </xsl:template>
444N/A <!--
444N/A Generate a property value setter.
444N/A -->
444N/A <xsl:template name="generate-property-setter">
444N/A <xsl:if test="not(@monitoring='true')">
444N/A <xsl:variable name="java-prop-name">
444N/A <xsl:call-template name="name-to-java">
444N/A <xsl:with-param name="value" select="@name" />
444N/A </xsl:call-template>
444N/A </xsl:variable>
444N/A <xsl:value-of
444N/A select="concat(' /**&#xa;',
444N/A ' * {@inheritDoc}&#xa;',
444N/A ' */&#xa;',
444N/A ' public void set',
444N/A $java-prop-name ,
444N/A '(')" />
444N/A <xsl:choose>
444N/A <xsl:when test="not(@multi-valued='true')">
444N/A <xsl:choose>
444N/A <xsl:when test="@mandatory='true'">
444N/A <xsl:call-template
444N/A name="get-property-java-primitive-type" />
444N/A </xsl:when>
444N/A <xsl:otherwise>
444N/A <xsl:call-template name="get-property-java-type" />
444N/A </xsl:otherwise>
444N/A </xsl:choose>
444N/A <xsl:value-of select="' value)'" />
444N/A <xsl:if test="@read-only='true'">
469N/A <xsl:value-of select="' throws PropertyIsReadOnlyException'" />
444N/A </xsl:if>
444N/A <xsl:value-of
444N/A select="concat(' {&#xa;' ,
444N/A ' impl.setPropertyValue(INSTANCE.get',
444N/A $java-prop-name ,
444N/A 'PropertyDefinition(), value);&#xa;',
444N/A ' }&#xa;')" />
444N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:value-of select="'Collection&lt;'" />
2622N/A <xsl:call-template name="get-property-java-type" />
2622N/A <xsl:value-of
2622N/A select="concat('&gt; values) {&#xa;' ,
2622N/A ' impl.setPropertyValues(INSTANCE.get',
2622N/A $java-prop-name ,
444N/A 'PropertyDefinition(), values);&#xa;',
444N/A ' }&#xa;')" />
444N/A </xsl:otherwise>
444N/A </xsl:choose>
444N/A </xsl:if>
444N/A </xsl:template>
444N/A <!--
444N/A Generate client relation methods.
444N/A -->
444N/A <xsl:template name="generate-client-relation-methods">
444N/A <xsl:variable name="name" select="@name" />
444N/A <xsl:variable name="java-relation-name">
444N/A <xsl:call-template name="name-to-java">
444N/A <xsl:with-param name="value" select="$name" />
444N/A </xsl:call-template>
444N/A </xsl:variable>
444N/A <xsl:variable name="java-class-name">
444N/A <xsl:call-template name="name-to-java">
444N/A <xsl:with-param name="value" select="@managed-object-name" />
444N/A </xsl:call-template>
444N/A </xsl:variable>
444N/A <xsl:choose>
444N/A <xsl:when test="adm:one-to-one">
444N/A <xsl:value-of
444N/A select="concat(' /**&#xa;',
444N/A ' * {@inheritDoc}&#xa;',
444N/A ' */&#xa;',
444N/A ' public ', $java-class-name, 'CfgClient get', $java-relation-name, '()&#xa;',
444N/A ' throws DefinitionDecodingException, ManagedObjectDecodingException,&#xa;',
444N/A ' ManagedObjectNotFoundException, ConcurrentModificationException,&#xa;',
444N/A ' AuthorizationException, CommunicationException {&#xa;',
444N/A ' return impl.getChild(INSTANCE.get', $java-relation-name,'RelationDefinition()).getConfiguration();&#xa;',
444N/A ' }&#xa;')" />
444N/A </xsl:when>
444N/A <xsl:when test="adm:one-to-zero-or-one">
444N/A <xsl:value-of
444N/A select="concat(' /**&#xa;',
444N/A ' * {@inheritDoc}&#xa;',
444N/A ' */&#xa;',
2622N/A ' public boolean has', $java-relation-name, '() throws ConcurrentModificationException,&#xa;',
2622N/A ' AuthorizationException, CommunicationException {&#xa;',
2622N/A ' return impl.hasChild(INSTANCE.get', $java-relation-name,'RelationDefinition());&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public ', $java-class-name, 'CfgClient get', $java-relation-name, '()&#xa;',
2622N/A ' throws DefinitionDecodingException, ManagedObjectDecodingException,&#xa;',
2622N/A ' ManagedObjectNotFoundException, ConcurrentModificationException,&#xa;',
2622N/A ' AuthorizationException, CommunicationException {&#xa;',
2622N/A ' return impl.getChild(INSTANCE.get', $java-relation-name,'RelationDefinition()).getConfiguration();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public &lt;M extends ', $java-class-name, 'CfgClient&gt; M create', $java-relation-name, '(&#xa;',
2623N/A ' ManagedObjectDefinition&lt;M, ?&gt; d, Collection&lt;DefaultBehaviorException&gt; exceptions) {&#xa;',
2623N/A ' return impl.createChild(INSTANCE.get', $java-relation-name,'RelationDefinition(), d, exceptions).getConfiguration();&#xa;',
2623N/A ' }&#xa;')" />
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public void remove', $java-relation-name, '()&#xa;',
2623N/A ' throws ManagedObjectNotFoundException, ConcurrentModificationException,&#xa;',
2623N/A ' OperationRejectedException, AuthorizationException, CommunicationException {&#xa;',
2623N/A ' impl.removeChild(INSTANCE.get', $java-relation-name,'RelationDefinition());&#xa;',
2623N/A ' }&#xa;')" />
2623N/A </xsl:when>
2623N/A <xsl:when test="adm:one-to-many">
2623N/A <xsl:variable name="plural-name"
2623N/A select="adm:one-to-many/@plural-name" />
2623N/A <xsl:variable name="java-relation-plural-name">
2623N/A <xsl:call-template name="name-to-java">
2623N/A <xsl:with-param name="value" select="$plural-name" />
2623N/A </xsl:call-template>
2623N/A </xsl:variable>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public String[] list', $java-relation-plural-name, '() throws ConcurrentModificationException,&#xa;',
2622N/A ' AuthorizationException, CommunicationException {&#xa;',
2622N/A ' return impl.listChildren(INSTANCE.get', $java-relation-plural-name,'RelationDefinition());&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public ', $java-class-name, 'CfgClient get', $java-relation-name, '(String name)&#xa;',
2622N/A ' throws DefinitionDecodingException, ManagedObjectDecodingException,&#xa;',
2622N/A ' ManagedObjectNotFoundException, ConcurrentModificationException,&#xa;',
2622N/A ' AuthorizationException, CommunicationException {&#xa;',
2622N/A ' return impl.getChild(INSTANCE.get', $java-relation-plural-name,'RelationDefinition(), name).getConfiguration();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
1155N/A ' public &lt;M extends ', $java-class-name, 'CfgClient&gt; M create', $java-relation-name, '(&#xa;',
1155N/A ' ManagedObjectDefinition&lt;M, ?&gt; d, String name, Collection&lt;DefaultBehaviorException&gt; exceptions) {&#xa;',
1155N/A ' return impl.createChild(INSTANCE.get', $java-relation-plural-name,'RelationDefinition(), d, name, exceptions).getConfiguration();&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1329N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1948N/A ' public void remove', $java-relation-name, '(String name)&#xa;',
1155N/A ' throws ManagedObjectNotFoundException, ConcurrentModificationException,&#xa;',
1155N/A ' OperationRejectedException, AuthorizationException, CommunicationException {&#xa;',
1155N/A ' impl.removeChild(INSTANCE.get', $java-relation-plural-name,'RelationDefinition(), name);&#xa;',
1155N/A ' }&#xa;')" />
1155N/A </xsl:when>
1155N/A <xsl:otherwise>
1155N/A <xsl:message terminate="yes">
1155N/A <xsl:value-of
1155N/A select="concat('Unknown relation type &quot;', local-name(*), '&quot; in relation &quot;', $name, '&quot;.')" />
1155N/A </xsl:message>
1155N/A </xsl:otherwise>
1155N/A </xsl:choose>
2014N/A </xsl:template>
1155N/A <!--
1948N/A Generate server relation methods.
1948N/A -->
1948N/A <xsl:template name="generate-server-relation-methods">
1948N/A <xsl:variable name="name" select="@name" />
1948N/A <xsl:variable name="java-relation-name">
1948N/A <xsl:call-template name="name-to-java">
1948N/A <xsl:with-param name="value" select="$name" />
1948N/A </xsl:call-template>
1948N/A </xsl:variable>
1948N/A <xsl:variable name="java-class-name">
1948N/A <xsl:call-template name="name-to-java">
1948N/A <xsl:with-param name="value" select="@managed-object-name" />
1948N/A </xsl:call-template>
1948N/A </xsl:variable>
1948N/A <xsl:choose>
1948N/A <xsl:when test="adm:one-to-one">
1948N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public ', $java-class-name, 'Cfg get',
1155N/A $java-relation-name, '() throws ConfigException {&#xa;',
1155N/A ' return impl.getChild(INSTANCE.get', $java-relation-name, 'RelationDefinition()).getConfiguration();&#xa;',
1155N/A ' }&#xa;')" />
1155N/A </xsl:when>
1155N/A <xsl:when test="adm:one-to-zero-or-one">
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public boolean has',
1155N/A $java-relation-name, '() {&#xa;',
1155N/A ' return impl.hasChild(INSTANCE.get', $java-relation-name, 'RelationDefinition());&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public ', $java-class-name, 'Cfg get',
1155N/A $java-relation-name, '() throws ConfigException {&#xa;',
1155N/A ' return impl.getChild(INSTANCE.get', $java-relation-name, 'RelationDefinition()).getConfiguration();&#xa;',
1155N/A ' }&#xa;')" />
444N/A <xsl:text>&#xa;</xsl:text>
444N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public void add', $java-relation-name, 'AddListener(&#xa;',
1155N/A ' ConfigurationAddListener&lt;', $java-class-name,'Cfg&gt; listener) throws ConfigException {&#xa;',
1155N/A ' impl.registerAddListener(INSTANCE.get', $java-relation-name, 'RelationDefinition(), listener);&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1590N/A ' */&#xa;',
1155N/A ' public void remove', $java-relation-name, 'AddListener(&#xa;',
1155N/A ' ConfigurationAddListener&lt;', $java-class-name,'Cfg&gt; listener) {&#xa;',
1155N/A ' impl.deregisterAddListener(INSTANCE.get', $java-relation-name, 'RelationDefinition(), listener);&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1590N/A ' */&#xa;',
1590N/A ' public void add', $java-relation-name, 'DeleteListener(&#xa;',
1155N/A ' ConfigurationDeleteListener&lt;', $java-class-name,'Cfg&gt; listener) throws ConfigException {&#xa;',
1155N/A ' impl.registerDeleteListener(INSTANCE.get', $java-relation-name, 'RelationDefinition(), listener);&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public void remove', $java-relation-name, 'DeleteListener(&#xa;',
2622N/A ' ConfigurationDeleteListener&lt;', $java-class-name,'Cfg&gt; listener) {&#xa;',
2622N/A ' impl.deregisterDeleteListener(INSTANCE.get', $java-relation-name, 'RelationDefinition(), listener);&#xa;',
2622N/A ' }&#xa;')" />
2622N/A </xsl:when>
1155N/A <xsl:when test="adm:one-to-many">
1155N/A <xsl:variable name="plural-name"
1155N/A select="adm:one-to-many/@plural-name" />
1155N/A <xsl:variable name="java-relation-plural-name">
1155N/A <xsl:call-template name="name-to-java">
1155N/A <xsl:with-param name="value" select="$plural-name" />
1155N/A </xsl:call-template>
1155N/A </xsl:variable>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public String[] list',
1155N/A $java-relation-plural-name, '() {&#xa;',
1155N/A ' return impl.listChildren(INSTANCE.get', $java-relation-plural-name,'RelationDefinition());&#xa;',
1155N/A ' }&#xa;')" />
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:text>&#xa;</xsl:text>
1155N/A <xsl:value-of
1155N/A select="concat(' /**&#xa;',
1155N/A ' * {@inheritDoc}&#xa;',
1155N/A ' */&#xa;',
1155N/A ' public ', $java-class-name, 'Cfg get',
1155N/A $java-relation-name, '(String name) throws ConfigException {&#xa;',
2622N/A ' return impl.getChild(INSTANCE.get', $java-relation-plural-name, 'RelationDefinition(), name).getConfiguration();&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:text>&#xa;</xsl:text>
2622N/A <xsl:value-of
2622N/A select="concat(' /**&#xa;',
2622N/A ' * {@inheritDoc}&#xa;',
2622N/A ' */&#xa;',
2622N/A ' public void add', $java-relation-name, 'AddListener(&#xa;',
2622N/A ' ConfigurationAddListener&lt;', $java-class-name,'Cfg&gt; listener) throws ConfigException {&#xa;',
2622N/A ' impl.registerAddListener(INSTANCE.get', $java-relation-plural-name, 'RelationDefinition(), listener);&#xa;',
2622N/A ' }&#xa;')" />
2622N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public void remove', $java-relation-name, 'AddListener(&#xa;',
2623N/A ' ConfigurationAddListener&lt;', $java-class-name,'Cfg&gt; listener) {&#xa;',
2623N/A ' impl.deregisterAddListener(INSTANCE.get', $java-relation-plural-name, 'RelationDefinition(), listener);&#xa;',
2623N/A ' }&#xa;')" />
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2623N/A ' public void add', $java-relation-name, 'DeleteListener(&#xa;',
2623N/A ' ConfigurationDeleteListener&lt;', $java-class-name,'Cfg&gt; listener) throws ConfigException {&#xa;',
2623N/A ' impl.registerDeleteListener(INSTANCE.get', $java-relation-plural-name, 'RelationDefinition(), listener);&#xa;',
2623N/A ' }&#xa;')" />
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:text>&#xa;</xsl:text>
2623N/A <xsl:value-of
2623N/A select="concat(' /**&#xa;',
2623N/A ' * {@inheritDoc}&#xa;',
2623N/A ' */&#xa;',
2622N/A ' public void remove', $java-relation-name, 'DeleteListener(&#xa;',
2622N/A ' ConfigurationDeleteListener&lt;', $java-class-name,'Cfg&gt; listener) {&#xa;',
2622N/A ' impl.deregisterDeleteListener(INSTANCE.get', $java-relation-plural-name, 'RelationDefinition(), listener);&#xa;',
2622N/A ' }&#xa;')" />
2622N/A </xsl:when>
2622N/A <xsl:otherwise>
2622N/A <xsl:message terminate="yes">
2622N/A <xsl:value-of
2622N/A select="concat('Unknown relation type &quot;', local-name(*), '&quot; in relation &quot;', $name, '&quot;.')" />
2622N/A </xsl:message>
2622N/A </xsl:otherwise>
2622N/A </xsl:choose>
2622N/A </xsl:template>
2622N/A <!--
2622N/A Generate change listener registration methods.
2622N/A -->
2622N/A <xsl:template name="generate-change-listener">
2622N/A <!--
2622N/A Process this managed object.
2622N/A -->
2622N/A <xsl:variable name="top-name"
2622N/A select="$this/adm:profile[@name='preprocessor']/admpp:parent-managed-object[last()]/@name" />
2622N/A <xsl:call-template name="generate-change-listener-help">
2622N/A <xsl:with-param name="top-name" select="$top-name" />
2622N/A <xsl:with-param name="name" select="$this-name" />
2622N/A </xsl:call-template>
2622N/A <!--
2622N/A Process parent hierarchy.
1112N/A -->
1112N/A <xsl:for-each
1112N/A select="$this/adm:profile[@name='preprocessor']/admpp:parent-managed-object">
1112N/A <xsl:call-template name="generate-change-listener-help">
1112N/A <xsl:with-param name="top-name" select="$top-name" />
1112N/A <xsl:with-param name="name" select="@name" />
1112N/A </xsl:call-template>
1112N/A </xsl:for-each>
1112N/A </xsl:template>
1112N/A <!--
1961N/A Generate a single set of change listener registration methods.
1961N/A -->
1961N/A <xsl:template name="generate-change-listener-help">
1961N/A <xsl:param name="top-name" select="/.." />
1961N/A <xsl:param name="name" select="/.." />
1961N/A <xsl:variable name="short-name">
1961N/A <xsl:choose>
1961N/A <xsl:when test="not($top-name) or $top-name = $name">
2440N/A <xsl:value-of select="''" />
2440N/A </xsl:when>
2440N/A <xsl:otherwise>
2440N/A <xsl:variable name="top-length"
2440N/A select="string-length($top-name)" />
2440N/A <xsl:variable name="length" select="string-length($name)" />
2440N/A <xsl:variable name="diff" select="$length - $top-length" />
2440N/A <xsl:value-of select="substring($name, 1, $diff - 1)" />
2440N/A </xsl:otherwise>
2440N/A </xsl:choose>
2440N/A </xsl:variable>
2440N/A <xsl:variable name="java-class">
2440N/A <xsl:call-template name="name-to-java">
2440N/A <xsl:with-param name="value" select="$name" />
2440N/A </xsl:call-template>
2440N/A </xsl:variable>
2440N/A <xsl:variable name="short-java-class">
2440N/A <xsl:call-template name="name-to-java">
2440N/A <xsl:with-param name="value" select="$short-name" />
2440N/A </xsl:call-template>
2440N/A </xsl:variable>
2440N/A <xsl:value-of
2440N/A select="concat(' /**&#xa;',
2440N/A ' * {@inheritDoc}&#xa;',
2440N/A ' */&#xa;')" />
2440N/A <xsl:value-of
2440N/A select="concat(' public void add', $short-java-class, 'ChangeListener(&#xa;',
2440N/A ' ConfigurationChangeListener&lt;',$java-class,'Cfg&gt; listener) {&#xa;',
2440N/A ' impl.registerChangeListener(listener);&#xa;',
2440N/A ' }&#xa;')" />
2440N/A <xsl:text>&#xa;</xsl:text>
2440N/A <xsl:text>&#xa;</xsl:text>
2440N/A <xsl:text>&#xa;</xsl:text>
2440N/A <xsl:value-of
2440N/A select="concat(' /**&#xa;',
2440N/A ' * {@inheritDoc}&#xa;',
2591N/A ' */&#xa;')" />
2591N/A <xsl:value-of
2591N/A select="concat(' public void remove', $short-java-class, 'ChangeListener(&#xa;',
2591N/A ' ConfigurationChangeListener&lt;',$java-class,'Cfg&gt; listener) {&#xa;',
2591N/A ' impl.deregisterChangeListener(listener);&#xa;',
2591N/A ' }&#xa;')" />
2591N/A </xsl:template>
2591N/A <!--
2591N/A Generate import statements for change-listener
2591N/A -->
2591N/A <xsl:template name="generate-change-listener-import-statements">
2591N/A <!--
Process this managed object.
-->
<xsl:element name="import">
<xsl:value-of
select="concat($this-package, '.server.', $this-java-class, 'Cfg')" />
</xsl:element>
<!--
Process parent hierarchy.
-->
<xsl:for-each
select="$this/adm:profile[@name='preprocessor']/admpp:parent-managed-object">
<xsl:variable name="java-class">
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="@name" />
</xsl:call-template>
</xsl:variable>
<xsl:element name="import">
<xsl:value-of
select="concat(@package, '.server.', $java-class, 'Cfg')" />
</xsl:element>
</xsl:for-each>
</xsl:template>
<!--
Generate an enumeration for a locally defined enumerated property.
-->
<xsl:template name="generate-enumeration">
<xsl:value-of
select="concat(' /**&#xa;',
' * Defines the set of permissable values for the &quot;', @name, '&quot; property.&#xa;')" />
<xsl:if test="adm:synopsis">
<xsl:value-of select="' * &lt;p&gt;&#xa;'" />
<xsl:call-template name="add-java-comment">
<xsl:with-param name="indent-text" select="' *'" />
<xsl:with-param name="content" select="adm:synopsis" />
</xsl:call-template>
</xsl:if>
<xsl:if test="adm:description">
<xsl:value-of select="' * &lt;p&gt;&#xa;'" />
<xsl:call-template name="add-java-comment">
<xsl:with-param name="indent-text" select="' *'" />
<xsl:with-param name="content" select="adm:description" />
</xsl:call-template>
</xsl:if>
<xsl:value-of
select="concat(' */&#xa;',
' public static enum ')" />
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="@name" />
</xsl:call-template>
<xsl:value-of select="' {&#xa;'" />
<xsl:text>&#xa;</xsl:text>
<xsl:for-each select="adm:syntax/adm:enumeration/adm:value">
<xsl:sort select="@name" />
<xsl:value-of select="' /**&#xa;'" />
<xsl:call-template name="add-java-comment">
<xsl:with-param name="indent-text" select="' *'" />
<xsl:with-param name="content" select="adm:synopsis" />
</xsl:call-template>
<xsl:value-of select="' */&#xa;'" />
<xsl:value-of select="' '" />
<xsl:call-template name="name-to-java-constant">
<xsl:with-param name="value" select="@name" />
</xsl:call-template>
<xsl:value-of select="concat('(&quot;', @name, '&quot;)')" />
<xsl:choose>
<xsl:when test="position() != last()">
<xsl:value-of select="',&#xa;'" />
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="';&#xa;'" />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:value-of
select="' // String representation of the value.&#xa;'" />
<xsl:value-of select="' private final String name;&#xa;'" />
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:value-of select="' // Private constructor.&#xa;'" />
<xsl:value-of select="' private '" />
<xsl:call-template name="name-to-java">
<xsl:with-param name="value" select="@name" />
</xsl:call-template>
<xsl:value-of
select="concat('(String name) { this.name = name; }&#xa;',
'&#xa;',
'&#xa;',
'&#xa;',
' /**&#xa;',
' * {@inheritDoc}&#xa;',
' */&#xa;',
' public String toString() { return name; }&#xa;')" />
<xsl:text>&#xa;</xsl:text>
<xsl:value-of select="' }&#xa;'" />
</xsl:template>
<!--
Main document parsing template.
-->
<xsl:template match="/">
<xsl:call-template name="copyright-notice" />
<xsl:value-of
select="concat('package ', $this-package, '.meta;&#xa;')" />
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:call-template name="generate-import-statements">
<xsl:with-param name="imports">
<xsl:if
test="$this-local-properties[@multi-valued='true' or
@read-only='true' or
@monitoring='true' or
@hidden='true' or
@mandatory='true']">
<import>org.opends.server.admin.PropertyOption</import>
</xsl:if>
<xsl:if
test="$this-local-properties/adm:default-behavior/adm:undefined
| $this-local-properties[@mandatory='true']">
<import>
org.opends.server.admin.UndefinedDefaultBehaviorProvider
</import>
</xsl:if>
<xsl:if
test="$this-local-properties/adm:default-behavior/adm:alias">
<import>
org.opends.server.admin.AliasDefaultBehaviorProvider
</import>
</xsl:if>
<xsl:if
test="$this-local-properties/adm:default-behavior/adm:inherited/adm:absolute">
<import>
org.opends.server.admin.AbsoluteInheritedDefaultBehaviorProvider
</import>
<import>org.opends.server.admin.ManagedObjectPath</import>
</xsl:if>
<xsl:if
test="$this-local-properties/adm:default-behavior/adm:inherited/adm:relative">
<import>
org.opends.server.admin.RelativeInheritedDefaultBehaviorProvider
</import>
<xsl:for-each
select="$this-local-properties/adm:default-behavior/adm:inherited/adm:relative">
<xsl:if test="@managed-object-package != $this-package">
<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:element name="import">
<xsl:value-of
select="concat(@managed-object-package, '.meta.', $java-class-name, 'CfgDefn')" />
</xsl:element>
</xsl:if>
</xsl:for-each>
</xsl:if>
<xsl:if
test="$this-local-properties/adm:default-behavior/adm:defined">
<import>
org.opends.server.admin.DefinedDefaultBehaviorProvider
</import>
<import>
org.opends.server.admin.DefaultBehaviorProvider
</import>
</xsl:if>
<xsl:element name="import">
<xsl:value-of
select="concat($this-package, '.client.', $this-java-class, 'CfgClient')" />
</xsl:element>
<xsl:element name="import">
<xsl:value-of
select="concat($this-package, '.server.', $this-java-class, 'Cfg')" />
</xsl:element>
<xsl:for-each select="$this-inherited-properties">
<xsl:call-template name="get-property-java-imports" />
</xsl:for-each>
<xsl:for-each select="$this-all-properties">
<xsl:call-template
name="get-property-definition-java-imports" />
</xsl:for-each>
<xsl:for-each select="$this-all-relations">
<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:element name="import">
<xsl:value-of
select="concat(@managed-object-package, '.client.', $java-class-name, 'CfgClient')" />
</xsl:element>
<xsl:element name="import">
<xsl:value-of
select="concat(@managed-object-package, '.server.', $java-class-name, 'Cfg')" />
</xsl:element>
</xsl:for-each>
<xsl:if test="$this-all-relations/adm:one-to-many">
<import>
org.opends.server.admin.InstantiableRelationDefinition
</import>
</xsl:if>
<xsl:if test="$this-all-relations/adm:one-to-zero-or-one">
<import>
org.opends.server.admin.OptionalRelationDefinition
</import>
</xsl:if>
<xsl:if test="$this-all-relations/adm:one-to-one">
<import>
org.opends.server.admin.SingletonRelationDefinition
</import>
</xsl:if>
<xsl:choose>
<xsl:when test="$this-is-abstract">
<import>
org.opends.server.admin.AbstractManagedObjectDefinition
</import>
</xsl:when>
<xsl:otherwise>
<import>
org.opends.server.admin.ManagedObjectDefinition
</import>
<import>org.opends.server.admin.PropertyProvider</import>
<import>
org.opends.server.admin.client.MissingMandatoryPropertiesException
</import>
<import>
org.opends.server.admin.ManagedObjectAlreadyExistsException
</import>
<import>
org.opends.server.admin.client.AuthorizationException
</import>
<import>
org.opends.server.admin.client.CommunicationException
</import>
<import>
org.opends.server.admin.client.ConcurrentModificationException
</import>
<import>
org.opends.server.admin.client.OperationRejectedException
</import>
<import>
org.opends.server.admin.client.ManagedObject
</import>
<import>
org.opends.server.admin.server.ServerManagedObject
</import>
<xsl:if test="not($this-is-root)">
<import>
org.opends.server.admin.server.ConfigurationChangeListener
</import>
<xsl:call-template
name="generate-change-listener-import-statements" />
</xsl:if>
<import>org.opends.server.types.DN</import>
<xsl:if test="$this-all-relations">
<import>
org.opends.server.admin.DefinitionDecodingException
</import>
<import>
org.opends.server.admin.ManagedObjectNotFoundException
</import>
<import>
org.opends.server.admin.client.ManagedObjectDecodingException
</import>
</xsl:if>
<xsl:if test="$this-all-relations/adm:one-to-many">
<import>java.util.Collection</import>
<import>
org.opends.server.admin.DefaultBehaviorException
</import>
<import>
org.opends.server.admin.server.ConfigurationAddListener
</import>
<import>
org.opends.server.admin.server.ConfigurationDeleteListener
</import>
<import>org.opends.server.config.ConfigException</import>
</xsl:if>
<xsl:if test="$this-all-relations/adm:one-to-zero-or-one">
<import>java.util.Collection</import>
<import>
org.opends.server.admin.DefaultBehaviorException
</import>
<import>
org.opends.server.admin.server.ConfigurationAddListener
</import>
<import>
org.opends.server.admin.server.ConfigurationDeleteListener
</import>
<import>org.opends.server.config.ConfigException</import>
</xsl:if>
<xsl:if test="$this-all-relations/adm:one-to-one">
<import>org.opends.server.config.ConfigException</import>
</xsl:if>
<xsl:if test="$this-all-properties[@multi-valued='true']">
<import>java.util.SortedSet</import>
<import>java.util.Collection</import>
</xsl:if>
<xsl:if test="$this-all-properties[@read-only='true']">
<import>org.opends.server.admin.PropertyIsReadOnlyException</import>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$this/@extends">
<xsl:if test="$parent-package != $this-package">
<xsl:element name="import">
<xsl:value-of
select="concat($parent-package, '.meta.', $parent-java-class, 'CfgDefn')" />
</xsl:element>
</xsl:if>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:text>&#xa;</xsl:text>
<xsl:call-template name="generate-meta-class-declaration" />
<xsl:text>&#xa;</xsl:text>
<xsl:call-template name="generate-meta-class-body" />
<xsl:text>}&#xa;</xsl:text>
</xsl:template>
</xsl:stylesheet>