Beispiel #1
0
 /*
  * (non-Javadoc)
  *
  * @see
  * org.openiam.idm.srvc.user.service.UserDataService#removeAllEmailAddresses
  * (java.lang.String)
  */
 @Transactional
 public void removeAllEmailAddresses(String userId) {
   if (userId == null) throw new NullPointerException("userId is null");
   emailAddressDao.removeByParent(userId, ContactConstants.PARENT_TYPE_USER);
 }