Class UserListController
- java.lang.Object
-
- ubic.gemma.web.controller.common.auditAndSecurity.UserListController
-
@Controller public class UserListController extends Object
For display and editing of users. Note: do not use parametrized collections as parameters for ajax methods in this class! Type information is lost during proxy creation so DWR can't figure out what type of collection the method should take. See bug 2756. Use arrays instead.- Author:
- pavlidis
- See Also:
UserFormMultiActionController
,SignupController
-
-
Constructor Summary
Constructors Constructor Description UserListController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.web.servlet.ModelAndView
getActiveUsers()
Collection<UserValueObject>
getUsers()
void
saveUser(UserValueObject user)
-
-
-
Method Detail
-
getUsers
public Collection<UserValueObject> getUsers()
-
getActiveUsers
@RequestMapping(value="/admin/activeUsers.html", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView getActiveUsers()
-
saveUser
public void saveUser(UserValueObject user)
-
-