Klasse GUIProcessorController

java.lang.Object
de.dlr.proseo.ui.gui.GUIBaseController
de.dlr.proseo.ui.gui.GUIProcessorController

@Controller public class GUIProcessorController extends GUIBaseController
A controller for retrieving and handling processors
Autor:
David Mazo
  • Konstruktordetails

    • GUIProcessorController

      public GUIProcessorController()
  • Methodendetails

    • showProcessor

      @RequestMapping("/processor-show") public String showProcessor()
      Show the processor view
      Gibt zurück:
      the name of the processor view template
    • showConfiguredProcessor

      @RequestMapping("/configured-processor-show") public String showConfiguredProcessor()
      Show the configured processor view
      Gibt zurück:
      the name of the configured processor view template
    • getProcessors

      @RequestMapping("/processor-show/get") public org.springframework.web.context.request.async.DeferredResult<String> getProcessors(@RequestParam(required=false,value="processorName") String processorName, @RequestParam(required=false,value="sortby") String sortby, @RequestParam(required=false,value="up") Boolean up, org.springframework.ui.Model model)
      Retrieve the processor with name or all if name is null
      Parameter:
      processorName - The processor name or null
      sortby - The sort column
      up - The sort direction (true for up)
      model - The model to hold the data
      Gibt zurück:
      The result
    • getConfiguredProcessors

      @RequestMapping("/configuredprocessor/get") public org.springframework.web.context.request.async.DeferredResult<String> getConfiguredProcessors(@RequestParam(required=false,value="processorName") String processorName, @RequestParam(required=false,value="sortby") String sortby, @RequestParam(required=false,value="up") Boolean up, org.springframework.ui.Model model)
      Retrieve the configured processors of a processor or all if processor is null
      Parameter:
      processorName - The processor name or null
      sortby - The sort column
      up - The sort direction (true for up)
      model - The model to hold the data
      Gibt zurück:
      The result