Example #1
0
 /*
  * (non-Javadoc)
  *
  * @see
  * org.openiam.idm.srvc.user.service.UserDataService#getNote(java.lang.String
  * )
  */
 @Transactional(readOnly = true)
 public UserNote getNote(java.lang.String noteId) {
   if (noteId == null) {
     throw new NullPointerException("attrId is null");
   }
   UserNoteEntity userNoteEntity = userNoteDao.findById(noteId);
   return userNoteDozerConverter.convertToDTO(userNoteEntity, true);
 }