ConvertingWrapDynaBean should allow custom BeanUtilsBean
--------------------------------------------------------

                 Key: BEANUTILS-299
                 URL: https://issues.apache.org/jira/browse/BEANUTILS-299
             Project: Commons BeanUtils
          Issue Type: Improvement
            Reporter: Heikki Vesalainen


ConvertingWrapDynaBean should accept as constructor parameter a custom 
BeanUtilsBean and use that instead of the static BeanUtils.

like so:

BeanUtilsBean beanUtils;

public ConvertingWrapDynaBean(Object instance, BeanUtilsBean beanUtils) {
  super(instance);
  this.beanUtils = beanUtils;
}

public ConvertingWrapDynaBean(Object instance) {
  this(instance, new BeanUtilsBean);
}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to