Class FormController

Object
FormController

@Controller public class FormController extends Object
  • Constructor Details

    • FormController

      public FormController()
  • Method Details

    • setFormService

      @Autowired public void setFormService(FormService formService)
    • setPanelService

      @Autowired public void setPanelService(PanelService panelService)
    • getMobileFormDefinition

      @RequestMapping(value="/api/formdefinition/{processDefinitionId}/{formKey}", method=GET, headers="Accept=application/json", produces="application/json") @ResponseBody public String getMobileFormDefinition(@PathVariable("processDefinitionId") String processDefinitionId, @PathVariable("formKey") String formKey, HttpServletResponse response)
    • getMobileFormDefinition

      @RequestMapping(value="/api/startformdefinition/{processDefinitionId}", method=GET, headers="Accept=application/json", produces="application/json") @ResponseBody public String getMobileFormDefinition(@PathVariable("processDefinitionId") String processDefinitionId, HttpServletResponse response)
    • getMobileFormDefinition

      @Deprecated @RequestMapping(value="/api/panels", method=GET, headers="Accept=application/json", produces="application/json") @ResponseBody public String getMobileFormDefinition(HttpServletResponse response)
      Deprecated.
    • getMobileFormDefinitionPanels

      @RequestMapping(value="/api/panelsx", method=GET, headers="Accept=application/json", produces="application/json") @ResponseBody public String getMobileFormDefinitionPanels(@RequestParam(value="formslazy",required=false,defaultValue="false") boolean formslazy, HttpServletResponse response)
    • getMobileFormDefinitionPanel

      @RequestMapping(value="/api/panelsx/{panelId}", method=GET, headers="Accept=application/json", produces="application/json") @ResponseBody public String getMobileFormDefinitionPanel(@PathVariable("panelId") Integer panelId, HttpServletResponse response)