Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @Entity
  2. public class Account extends BaseModel {
  3.  
  4.     (...)
  5.  
  6.     @Override
  7.     @Transactional
  8.     public void delete() {
  9.         Notification.deleteNotificationsForAccount(this.id);
  10.  
  11.         JPA.em().remove(this);
  12.     }
  13. }