Package eu.planets_project.ifr.core.security.api.services.UserManager

Examples of eu.planets_project.ifr.core.security.api.services.UserManager.UserNotValidException


  public void addUser(User user) throws UserNotValidException {
    log.info("SelfRegistrationManagerImpl.addUser checking useravailibility");
    if( ! isUsernameAvailable(user.getUsername())) {
      log.info("SelfRegistrationManagerImpl.addUser User NOT available");
      throw new UserNotValidException();
    }
    // Should be okay to store:
    log.info("SelfRegistrationManagerImpl.addUser persisting the user");
    log.info("User name = " + user.getUsername());
    if (null != user.getId()) {
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.security.api.services.UserManager.UserNotValidException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.