Package org.appfuse.service

Examples of org.appfuse.service.UserManager.removeUser()


    @After
    public void removeSignupUser() {
        UserManager userManager = applicationContext.getBean(UserManager.class);
        try {
            User signup = userManager.getUserByUsername("self-registered");
            userManager.removeUser(signup);
        } catch (UsernameNotFoundException e) {
            // OK: ignore
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.