I think I just found the answer to my own question...
This is some good information on Hibernate Bulk Functionality:
http://blog.hibernate.org/cgi-bin/blosx ... basic.html
http://blog.hibernate.org/cgi-bin/blosx ... ulti-table
In this article I see:
"From the EJB3 persistence specification:
Bulk update and delete operations apply to entities of a single entity class (together with its subclasses, if any). Only one entity abstract schema type may be specified in the FROM or UPDATE clause.
A delete operation only applies to entities of the specified class and its subclasses. It does not cascade to related entities.
...
One very interesting thing to point out there. The specification specifically disallows cascading of the delete to releated entities (not including, abviously, db-level cascades). "
So... bulk deletes won't do cascades for us.