@Controller @RequestMapping(value="EDIT") public class ManageParticipantsController extends Object
| Modifier and Type | Field and Description |
|---|---|
protected org.slf4j.Logger |
logger |
| Constructor and Description |
|---|
ManageParticipantsController() |
| Modifier and Type | Method and Description |
|---|---|
String |
addParticipant(javax.portlet.ResourceResponse response,
org.springframework.ui.ModelMap model,
AddParticipantForm addParticipantForm,
org.springframework.validation.BindingResult bindingResult) |
String |
deleteParticipants(javax.portlet.ResourceResponse response,
org.springframework.ui.ModelMap model,
DeleteParticipantsForm deleteParticipantForm,
org.springframework.validation.BindingResult bindingResult) |
protected Map<String,String> |
getFieldErrors(org.springframework.validation.BindingResult bindingResult) |
String |
getParticipants(long sessionId,
org.springframework.ui.ModelMap model) |
String |
searchForParticipants(org.springframework.ui.ModelMap model,
String name,
String email) |
void |
setConferenceUserService(ConferenceUserService conferenceUserService) |
void |
setSessionService(SessionService sessionService) |
void |
setViewController(ViewSessionListController viewController) |
String |
updateParticipant(javax.portlet.ResourceResponse response,
org.springframework.ui.ModelMap model,
UpdateParticipantForm updateParticipantForm,
org.springframework.validation.BindingResult bindingResult) |
String |
viewParticipants(javax.portlet.PortletRequest request,
long sessionId,
org.springframework.ui.ModelMap model) |
@Autowired public void setConferenceUserService(ConferenceUserService conferenceUserService)
@Autowired public void setSessionService(SessionService sessionService)
@Autowired public void setViewController(ViewSessionListController viewController)
@RenderMapping(params="action=addParticipants") public String viewParticipants(javax.portlet.PortletRequest request, @RequestParam long sessionId, org.springframework.ui.ModelMap model)
@ResourceMapping(value="getParticipants") public String getParticipants(@RequestParam long sessionId, org.springframework.ui.ModelMap model)
@ResourceMapping(value="addParticipant") public String addParticipant(javax.portlet.ResourceResponse response, org.springframework.ui.ModelMap model, AddParticipantForm addParticipantForm, org.springframework.validation.BindingResult bindingResult)
@ResourceMapping(value="updateParticipant") public String updateParticipant(javax.portlet.ResourceResponse response, org.springframework.ui.ModelMap model, UpdateParticipantForm updateParticipantForm, org.springframework.validation.BindingResult bindingResult)
@ResourceMapping(value="deleteParticipant") public String deleteParticipants(javax.portlet.ResourceResponse response, org.springframework.ui.ModelMap model, DeleteParticipantsForm deleteParticipantForm, org.springframework.validation.BindingResult bindingResult)
@ResourceMapping(value="searchForParticipants") public String searchForParticipants(org.springframework.ui.ModelMap model, @RequestParam(required=false) String name, @RequestParam(required=false) String email)
Copyright © 2016 Jasig. All Rights Reserved.