List of usage examples for org.hibernate.annotations CascadeType EVICT
CascadeType EVICT
To view the source code for org.hibernate.annotations CascadeType EVICT.
Click Source Link
From source file:gov.nih.nci.cabig.caaers.domain.StudyTherapy.java
License:BSD License
@ManyToOne @JoinColumn(name = "study_id", nullable = false) @Cascade(value = { CascadeType.EVICT }) public Study getStudy() { return study; }