Simplify default server.xml by using another property setting style for simple 
values and references
----------------------------------------------------------------------------------------------------

                 Key: DIRSERVER-825
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-825
             Project: Directory ApacheDS
          Issue Type: Improvement
          Components: core
            Reporter: Stefan Zoerner
         Assigned To: Stefan Zoerner
            Priority: Minor
             Fix For: 1.0.1, 1.5.0


Currently, the bean definitions in the default server.xml from the 
server-installers project seems to favor this style (example):
...
<bean id="systemPartitionConfiguration" class="...">
    <property name="name"><value>system</value></property>
    <property name="cacheSize"><value>100</value></property>
    <property name="suffix"><value>ou=system</value></property>
...

The configurations becomes shorter if we use this style
...
<bean id="systemPartitionConfiguration" class="...">
    <property name="name" value="system" />
    <property name="cacheSize" value="100" />
    <property name="suffix" value="ou=system" />
... 

User can easily use this style on their own, but many will simple adjust the 
default to their needs. Thus it should be less verbose.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to