5051525354555657585960
@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