Re: [hibernate-dev] checkNullability when deleting an entity

2013-10-03 Thread Steve Ebersole
With HV or BV enabled, generally speaking Nullability#checkNullability no-ops anyway.. On 10/02/2013 08:36 AM, Emmanuel Bernard wrote: > On Mon 2013-09-23 17:07, Steve Ebersole wrote: >> Anyone have compelling reasons to continue to call >> org.hibernate.engine.internal.Nullability#checkNullabili

Re: [hibernate-dev] checkNullability when deleting an entity

2013-10-03 Thread Emmanuel Bernard
On Mon 2013-09-23 17:07, Steve Ebersole wrote: > Anyone have compelling reasons to continue to call > org.hibernate.engine.internal.Nullability#checkNullability when deleting > an entity? An entity being deleted can be validated by Bean Validation. But from what I understand you would not call c

Re: [hibernate-dev] checkNullability when deleting an entity

2013-09-24 Thread Sanne Grinovero
Neither one is used in Search. thanks, Sanne On 23 September 2013 23:07, Steve Ebersole wrote: > Anyone have compelling reasons to continue to call > org.hibernate.engine.internal.Nullability#checkNullability when deleting > an entity? > > To a lesser degree, how about reasons for calling > org.

[hibernate-dev] checkNullability when deleting an entity

2013-09-23 Thread Steve Ebersole
Anyone have compelling reasons to continue to call org.hibernate.engine.internal.Nullability#checkNullability when deleting an entity? To a lesser degree, how about reasons for calling org.hibernate.engine.internal.ForeignKeys.Nullifier#nullifyTransientReferences when deleting? ___