Class ConfigurationController

java.lang.Object
de.hybris.platform.hac.controller.platform.ConfigurationController

@Controller @RequestMapping("/platform/") public class ConfigurationController extends Object
  • Field Details

  • Constructor Details

    • ConfigurationController

      public ConfigurationController()
  • Method Details

    • config

      @RequestMapping(value="config", method=GET) public String config(org.springframework.ui.Model model) throws IOException
      Throws:
      IOException
    • configDelete

      @RequestMapping(value="configdelete", method=POST) @ResponseBody public void configDelete(org.springframework.ui.Model model, @RequestParam String key, javax.servlet.http.HttpServletResponse response) throws IOException
      Throws:
      IOException
    • configUpdateCreate

      @RequestMapping(value="configstore", method=POST, headers="Accept=application/json") @ResponseBody public Map configUpdateCreate(@RequestParam String key, @RequestParam String val)
    • configLockUnlockCreate

      @RequestMapping(value="config/lock", method=POST) @ResponseBody public void configLockUnlockCreate(@RequestParam Boolean lock, javax.servlet.http.HttpServletResponse response) throws IOException
      Throws:
      IOException
    • applyEdited

      @RequestMapping(value="config/applyedited", method=POST) @ResponseBody public Map applyEdited()
    • resetEdited

      @RequestMapping(value="config/resetedited", method=POST) @ResponseBody public Map resetEdited()
    • valuechanged

      @RequestMapping(value="config/valuechanged", method=POST) @ResponseBody public Map valuechanged(@RequestParam String key, @RequestParam String val)
    • getParameter

      protected String getParameter(String key)
    • getEdited

      @RequestMapping(value="config/edited", method=POST) @ResponseBody public Map getEdited()
    • setSessionService

      public void setSessionService(SessionService sessionService)
    • setConfigurationViewService

      public void setConfigurationViewService(ConfigurationViewService configurationViewService)