I'm currently asked to convert our POJOs hibernate annotations to hbm.xml files,
But I came across two annotations that I can't "translate" and doesn't find a complete answer to my question,
What cascading type should I use to reflect the following: 1)
@Cascade({CascadeType.PERSIST, CascadeType.REFRESH, CascadeType.REMOVE, CascadeType.SAVE_UPDATE })
2)
@Cascade({CascadeType.MERGE})
Thanks in advance.