Class NotificationsController
java.lang.Object
org.duracloud.account.app.controller.NotificationsController
@Controller
@RequestMapping("/root/notifications")
public class NotificationsController
extends Object
- Author:
- Daniel Bernstein Date: 01/05/2015
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.web.servlet.ModelAndVieworg.springframework.web.servlet.ModelAndViewget()org.springframework.web.servlet.ModelAndViewupdate(long templateId, EmailTemplateForm form, org.springframework.validation.BindingResult bindingResult, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes)
-
Field Details
-
BASE_MAPPING
- See Also:
-
-
Constructor Details
-
NotificationsController
public NotificationsController()
-
-
Method Details
-
get
@RequestMapping("") public org.springframework.web.servlet.ModelAndView get()- Returns:
-
edit
@RequestMapping(value="/edit/{templateId}", method=GET) public org.springframework.web.servlet.ModelAndView edit(@PathVariable Long templateId) -
update
@RequestMapping(value="/edit/{templateId}", method=POST) @Transactional public org.springframework.web.servlet.ModelAndView update(@PathVariable long templateId, @ModelAttribute("emailTemplateForm") EmailTemplateForm form, org.springframework.validation.BindingResult bindingResult, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes)
-