Class SperfConfigController

java.lang.Object
org.xbricks.sperftest.controllers.SperfConfigController

@Controller public class SperfConfigController extends Object
Created by Juraj Horak
  • Constructor Details

  • Method Details

    • EditConfig

      @RequestMapping("/parser/confedit") public String EditConfig(org.springframework.ui.Model model)
      Returns:
      Template Name responsible for the action or redirection to somewhere
    • editConfigColumns

      @RequestMapping("/parser/confcols") public String editConfigColumns(org.springframework.ui.Model model)
    • ShowConfig

      @RequestMapping("/parser/viewconf") public String ShowConfig(org.springframework.ui.Model model)
      Returns:
      Template Name responsible for the action or redirection to somewhere
    • storeConfig

      @PostMapping @RequestMapping("/parser/storeconf") public String storeConfig(@ModelAttribute SperfConfigCommand sperfConfigCommand)
    • selectConfig

      @PostMapping @RequestMapping("/parser/selectConf") public String selectConfig(@RequestParam("selectedConfigName") String selectedConfigName)
    • EditUserConfig

      @RequestMapping("/parser/{username}/confedit") public String EditUserConfig(@PathVariable String username)
      Returns:
      Template Name responsible for the action or redirection to somewhere
    • ShowUserConfig

      @RequestMapping("/parser/{username}/viewconf") public String ShowUserConfig(@PathVariable String username)
      Returns:
      Template Name responsible for the action or redirection to somewhere
    • StoreUserConfig

      @PostMapping @RequestMapping("/parser/{username}/storeconf") public String StoreUserConfig(@PathVariable String username)
      Returns:
      Template Name responsible for the action or redirection to somewhere