dev@glassfish.java.net

Re: default value of auto deploy and dynamic reload in v3 prelude has changed to "false"

From: Kedar Mhaswade <Kedar.Mhaswade_at_Sun.COM>
Date: Mon, 13 Oct 2008 15:06:02 -0700

> - There is no way to remove these attributes from domain.xml using admin
> interfaces. They will have to be set to either "true" or "false" as they
> are boolean in nature.

This last point is not true as of now. For that to happen, this interface should
be changed as follows:

- @Attribute (defaultValue="false")
+ @Attribute (defaultValue="false", dataType=Boolean.class)
      public String getDynamicReloadEnabled();

      /**
@@ -100,7 +100,7 @@
       * @return possible object is
       * {_at_link String }
       */
- @Attribute (defaultValue="false")
+ @Attribute (defaultValue="false", dataType=Boolean.class)
      public String getAutodeployEnabled();



I will do so right away. Jerome -- do you want me to do this for
Prelude branch as well?

Thanks,
Kedar