Class Adapters

java.lang.Object
org.frankframework.console.controllers.Adapters

@RestController public class Adapters extends Object
  • Constructor Details

  • Method Details

    • getAdapters

      @AllowAllIbisUserRoles @GetMapping(value="/adapters", produces="application/json") public org.springframework.http.ResponseEntity<?> getAdapters(Adapters.GetAdapterParams params)
    • getAdapter

      @AllowAllIbisUserRoles @GetMapping(value="/configurations/{configuration}/adapters/{name}", produces="application/json") public org.springframework.http.ResponseEntity<?> getAdapter(Adapters.AdapterPathVariables path, Adapters.GetAdapterParams params)
    • getAdapterHealth

      @PermitAll @GetMapping(value="/configurations/{configuration}/adapters/{name}/health", produces="application/json") public org.springframework.http.ResponseEntity<?> getAdapterHealth(Adapters.AdapterPathVariables path)
    • updateAdapters

      @RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PutMapping(value="/adapters", produces="application/json", consumes="application/json") public org.springframework.http.ResponseEntity<?> updateAdapters(@RequestBody Adapters.UpdateAdaptersModel model)
    • updateAdapter

      @RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PutMapping(value="/configurations/{configuration}/adapters/{adapter}", produces="application/json", consumes="application/json") public org.springframework.http.ResponseEntity<?> updateAdapter(Adapters.AdapterPathVariables path, @RequestBody Adapters.UpdateAdapterOrReceiverModel model)
    • updateReceiver

      @RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PutMapping(value="/configurations/{configuration}/adapters/{adapter}/receivers/{receiver}", produces="application/json", consumes="application/json") public org.springframework.http.ResponseEntity<?> updateReceiver(Adapters.AdapterPathVariables path, @RequestBody Adapters.UpdateAdapterOrReceiverModel json)
    • getAdapterFlow

      @AllowAllIbisUserRoles @GetMapping("/configurations/{configuration}/adapters/{adapter}/flow") public org.springframework.http.ResponseEntity<?> getAdapterFlow(Adapters.AdapterPathVariables path) throws ApiException
      Throws:
      ApiException
    • getAdapterStatistics

      @AllowAllIbisUserRoles @GetMapping(value="/configurations/{configuration}/adapters/{adapter}/statistics", produces="application/json") public org.springframework.http.ResponseEntity<?> getAdapterStatistics(Adapters.AdapterPathVariables path)