> Johan, it is not clear to me what you're trying to accomplish with these changes.
>Is it just that you only want
> a subset of the properties available to be retrieved or set through PropertyUtils?
>If so, you might investigate
> using a BeanInfo class along with your form bean. This allows you to customize the
>set of properties available
> -- and even change method names if you want to. The Java introspection logic fully
>supports this, so it will get
> used automatically by PropertyUtils.
>
thx, i will look into this
But what i want is that PropertyUtils just calls the setProperty(String sPropertyName,
Object oValue)
of my FormBean. For every property i have.
My Form bean doesn't have any other property get and set methods all must go through
the
getProperty and setProperty
I will investigate the BeanInfo class.
johan