예제 #1
0
 /*
  * (non-Javadoc)
  *
  * @see
  * org.openiam.idm.srvc.user.service.UserDataService#removeAllNotes(java
  * .lang.String)
  */
 @Transactional
 public void removeAllNotes(String userId) {
   if (userId == null) {
     throw new NullPointerException("userId is null");
   }
   userNoteDao.deleteUserNotes(userId);
 }