[Design of JBoss jBPM] - Re: [O/T] Bug/issue triage
by estaub
Tom,
My concern is more that I can't even see the present, not that I can't see the future.
I think you've resolved a lot of issues that aren't marked as resolved in Jira. Is that true? If so, could you mark them as resolved?
I think there are issues that are targetted for 3.2 that you are sure won't be resolved in 3.2. Is that true? If so, could you take them off of 3.2 in Jira?
I know that 16-Feb is not the 3.2 release date. While I understand the difficulty of holding to release dates, I'm sure that you have a better guesstimate in your mind than 16-Feb. Can you put it on the Jira?
I'm not asking for hour-by-hour currency, or for a great deal of accuracy in future plans. Neither of these is probably feasible. I'm just asking that you bring Jira up to date with what you do know once every week or two. Is that reasonable?
Thanks,
-Ed Staub
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023101#4023101
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023101
17 years, 10 months
[Design of JBoss jBPM] - Re: various questions
by tom.baeyens@jboss.com
"gavin.king(a)jboss.com" wrote : The problem is nothing to do with proxies. AFAIR, there is no problem using foo.equals(bar) with a default implementation of equals. (Even if foo and bar are proxies.)
|
| The problem is that == is an incorrect implementation of equals, since two nonidentical objects with represent the same data (ie, the same row of the database) will not be equal. This is nothing to do with Hibernate.
|
| "business key" equality is the correct interpretation of equals() from a data modelling perspective. It represents what the *user* thinks of as the "same objects".
there is no problem with proxy1.equals(proxy2).
the problem appears when proxy1 is compared with its underlying real object. this happens when using proxies obtained from hibernate with the usage of 'this' (e.g. by passing 'this' as a parameter in another method)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023070#4023070
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023070
17 years, 10 months