@Controller @RequestMapping(value="/root/notifications") public class NotificationsController extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
BASE_MAPPING |
| Constructor and Description |
|---|
NotificationsController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.web.servlet.ModelAndView |
edit(Long templateId) |
org.springframework.web.servlet.ModelAndView |
get() |
org.springframework.web.servlet.ModelAndView |
update(long templateId,
EmailTemplateForm form,
org.springframework.validation.BindingResult bindingResult,
org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) |
public static final String BASE_MAPPING
@RequestMapping(value="") public org.springframework.web.servlet.ModelAndView get()
@RequestMapping(value="/edit/{templateId}",
method=GET)
public org.springframework.web.servlet.ModelAndView edit(@PathVariable
Long templateId)
@RequestMapping(value="/edit/{templateId}",
method=POST)
@Transactional
public org.springframework.web.servlet.ModelAndView update(@PathVariable
long templateId,
@ModelAttribute(value="emailTemplateForm")
EmailTemplateForm form,
org.springframework.validation.BindingResult bindingResult,
org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes)
Copyright © 2009–2019 DuraSpace. All rights reserved.