Advertisement
TeNNoX

Account

Mar 28th, 2015
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement