Package se.inera.ifv.casebox.core.entity

Examples of se.inera.ifv.casebox.core.entity.Authority


            log.error("Username {} already exist, can not create user.", new Object[] {username});
            throw new CaseboxException("error.user.alreadyexist");
        }
       
        user = new User(username, password, true, firstName, lastName);
        Authority authority = new Authority(user, AuthorityRole.ROLE_USER);
        user.getAuthorities().add(authority);
       
        log.debug("Create user {}.", new Object[]{user});
        user = userRepository.store(user);
View Full Code Here

TOP

Related Classes of se.inera.ifv.casebox.core.entity.Authority

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.