Package org.internna.iwebmvc.model.security

Examples of org.internna.iwebmvc.model.security.UserImpl.toggle()


    @RemoteMethod
    public boolean toggle(String username) throws Exception {
        Assert.hasText(username);
        UserImpl user = dao.findUser(username);
        user.toggle();
        dao.createUser(user);
        return user.isEnabled();
    }

    @RemoteMethod
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.