Package org.kuali.rice.ken.web.spring
Class ContentTypeController
java.lang.Object
org.kuali.rice.ken.web.spring.ContentTypeController
@RequestMapping("/ken")
@Controller("contentTypeController")
public class ContentTypeController
extends Object
Controller that manages ContentTypes (add/update)
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected NotificationAuthorizationServiceprotected NotificationContentTypeServiceprotected NotificationService -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.web.servlet.ModelAndViewaddContentType(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) org.springframework.web.servlet.ModelAndViewdisplayContentTypeForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) org.springframework.web.servlet.ModelAndViewdisplayContentTypes(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) voidsetNotificationAuthorizationService(NotificationAuthorizationService notificationAuthzService) voidsetNotificationContentTypeService(NotificationContentTypeService notificationContentTypeService) voidsetNotificationService(NotificationService notificationService) org.springframework.web.servlet.ModelAndViewupdateContentType(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
Field Details
-
notificationService
-
notificationContentTypeService
@Autowired @Qualifier("notificationContentTypeService") protected NotificationContentTypeService notificationContentTypeService -
notificationAuthzService
@Autowired @Qualifier("notificationAuthorizationService") protected NotificationAuthorizationService notificationAuthzService
-
-
Constructor Details
-
ContentTypeController
public ContentTypeController()
-
-
Method Details
-
displayContentTypes
@RequestMapping("/ContentTypeManager.form") public org.springframework.web.servlet.ModelAndView displayContentTypes(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) -
displayContentTypeForm
@RequestMapping("/ContentTypeForm.form") public org.springframework.web.servlet.ModelAndView displayContentTypeForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) -
addContentType
@RequestMapping("/AddContentType.form") public org.springframework.web.servlet.ModelAndView addContentType(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) -
updateContentType
@RequestMapping("/UpdateContentType.form") public org.springframework.web.servlet.ModelAndView updateContentType(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) -
setNotificationService
-
setNotificationContentTypeService
public void setNotificationContentTypeService(NotificationContentTypeService notificationContentTypeService) -
setNotificationAuthorizationService
public void setNotificationAuthorizationService(NotificationAuthorizationService notificationAuthzService)
-