Class Adapters
java.lang.Object
org.frankframework.console.controllers.Adapters
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
static final record
static final record
static final record
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<?> getAdapter
(Adapters.AdapterPathVariables path, Adapters.GetAdapterParams params) org.springframework.http.ResponseEntity
<?> org.springframework.http.ResponseEntity
<?> org.springframework.http.ResponseEntity
<?> getAdapters
(Adapters.GetAdapterParams params) org.springframework.http.ResponseEntity
<?> org.springframework.http.ResponseEntity
<?> org.springframework.http.ResponseEntity
<?> org.springframework.http.ResponseEntity
<?>
-
Constructor Details
-
Adapters
-
-
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)
-