@Controller @RequestMapping(value="/messages") public class MessageController extends Object
Constructor and Description |
---|
MessageController() |
Modifier and Type | Method and Description |
---|---|
String |
getLogOfMsgByMsgId(Long msgId,
org.springframework.ui.Model model) |
String |
getMsgDetailByMsgId(Long msgId,
org.springframework.ui.Model model) |
String |
getSearchForm(ExternalSystemEnum sourceSystem,
String correlationId,
org.springframework.ui.ModelMap model) |
String |
searchMessage(ExternalSystemEnum sourceSystem,
String correlationId,
org.springframework.ui.ModelMap model) |
String |
showMessagesByContent(String substring,
org.springframework.ui.ModelMap model) |
@RequestMapping(value="/{msgId}", method=GET) public String getMsgDetailByMsgId(@PathVariable(value="msgId") Long msgId, org.springframework.ui.Model model)
@RequestMapping(value="/{msgId}/log", method=GET) public String getLogOfMsgByMsgId(@PathVariable(value="msgId") Long msgId, org.springframework.ui.Model model)
@RequestMapping(value="/searchForm", method=GET) public String getSearchForm(@RequestParam(value="source",required=false) ExternalSystemEnum sourceSystem, @RequestParam(value="correlation",required=false) String correlationId, @ModelAttribute(value="model") org.springframework.ui.ModelMap model)
@RequestMapping(value="/searchForm", method=POST) public String searchMessage(@RequestParam(value="sourceSystem") ExternalSystemEnum sourceSystem, @RequestParam(value="correlationId") String correlationId, @ModelAttribute(value="model") org.springframework.ui.ModelMap model)
Copyright © 2016. All rights reserved.