[jboss-cvs] Re: jboss-cvs-commits Digest, Vol 37, Issue 197

Ales Justin ales.justin at gmail.com
Tue Jul 14 14:56:11 EDT 2009


Why is this not isOverrideDistributableManager(), as per javabeans?

> +   /**
> +    * Gets whether the session <code>Manager</code> implementation for 
> +    * distributable webapps should be overridden with an instance of 
> +    * {@link #getManagerClass()}.
> +    * <p>
> +    * Setting this to <code>false</code> allows custom configuration of
> +    * a manager via a <code>context.xml</code>. Default is <code>true</code>.
> +    * </p>
> +    * 
> +    * @return <code>true</code> if the manager should be overridden,
> +    *         <code>false</code> if the existing manager should be retained.
> +    */
> +   public boolean getOverrideDistributableManager()
> +   {
> +      return overrideDistributableManager;
> +   }
> +
> +   /**
> +    * Sets whether the session <code>Manager</code> implementation for 
> +    * distributable webapps should be overridden with an instance of 
> +    * {@link #getManagerClass()}.
> +    * <p>
> +    * Setting this to <code>false</code> allows custom configuration of
> +    * a manager via a <code>context.xml</code>.  Default is <code>true</code>.
> +    * </p>
> +    * 
> +    * @param override <code>true</code> if the manager should be overridden,
> +    *         <code>false</code> if the existing manager should be retained.
> +    */
> +   public void setOverrideDistributableManager(boolean override)
> +   {
> +      this.overrideDistributableManager = override;
> +   }



More information about the jboss-cvs-commits mailing list