Package org.kuali.rice.ken.web.spring
Class UserPreferencesController
java.lang.Object
org.kuali.rice.ken.web.spring.UserPreferencesController
@RequestMapping("/ken")
@Controller("userPreferencesController")
public class UserPreferencesController
extends Object
This class is the controller that handles management of various user preferences interfaces (deliver types, user subscriptions, etc).
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected NotificationChannelServiceprotected UserPreferenceService -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.web.servlet.ModelAndViewdisplayActionListPreferences(javax.servlet.http.HttpServletRequest request) This method displays the actionList preferences screen.org.springframework.web.servlet.ModelAndViewdisplayUserPreferences(javax.servlet.http.HttpServletRequest request) This method handles displaying the user preferences UI.voidsetNotificationChannelService(NotificationChannelService notificationChannelService) voidsetUserPreferenceService(UserPreferenceService userPreferenceService) org.springframework.web.servlet.ModelAndViewsubscribeToChannel(javax.servlet.http.HttpServletRequest request) Subscribe To a Channelorg.springframework.web.servlet.ModelAndViewunsubscribeFromChannel(javax.servlet.http.HttpServletRequest request) Unsubscribe from Channel
-
Field Details
-
notificationChannelService
@Autowired @Qualifier("notificationChannelService") protected NotificationChannelService notificationChannelService -
userPreferenceService
@Autowired @Qualifier("userPreferenceService") protected UserPreferenceService userPreferenceService
-
-
Constructor Details
-
UserPreferencesController
public UserPreferencesController()
-
-
Method Details
-
displayActionListPreferences
@RequestMapping("/DisplayActionListPreferences.form") public org.springframework.web.servlet.ModelAndView displayActionListPreferences(javax.servlet.http.HttpServletRequest request) This method displays the actionList preferences screen. -
displayUserPreferences
@RequestMapping("/DisplayUserPreferences.form") public org.springframework.web.servlet.ModelAndView displayUserPreferences(javax.servlet.http.HttpServletRequest request) This method handles displaying the user preferences UI. -
subscribeToChannel
@RequestMapping("/SubscribeToChannel.form") public org.springframework.web.servlet.ModelAndView subscribeToChannel(javax.servlet.http.HttpServletRequest request) Subscribe To a Channel -
unsubscribeFromChannel
@RequestMapping("/UnsubscribeFromChannel.form") public org.springframework.web.servlet.ModelAndView unsubscribeFromChannel(javax.servlet.http.HttpServletRequest request) Unsubscribe from Channel -
getNotificationChannelService
-
getUserPreferenceService
-
setNotificationChannelService
-
setUserPreferenceService
-