Class Logging
java.lang.Object
org.frankframework.console.controllers.Logging
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final recordstatic final recordstatic final record -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?> org.springframework.http.ResponseEntity<?> org.springframework.http.ResponseEntity<?> getLogDefinitions(String filter) org.springframework.http.ResponseEntity<?> org.springframework.http.ResponseEntity<?> org.springframework.http.ResponseEntity<?>
-
Constructor Details
-
Logging
-
-
Method Details
-
getLogDirectory
@AllowAllIbisUserRoles @GetMapping(value="/logging", produces="application/json") public org.springframework.http.ResponseEntity<?> getLogDirectory(Logging.ParametersModel params) -
getLogConfiguration
@AllowAllIbisUserRoles @GetMapping(value="/server/logging", produces="application/json") public org.springframework.http.ResponseEntity<?> getLogConfiguration() -
updateLogConfiguration
@RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PutMapping(value="/server/logging", produces="application/json", consumes="application/json") public org.springframework.http.ResponseEntity<?> updateLogConfiguration(@RequestBody Logging.UpdateLogConfigurationModel model) -
getLogDefinitions
@AllowAllIbisUserRoles @GetMapping(value="/server/logging/settings", produces="application/json") public org.springframework.http.ResponseEntity<?> getLogDefinitions(@RequestParam(value="filter",required=false) String filter) -
createLogDefinition
@RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PostMapping(value="/server/logging/settings", consumes="multipart/form-data") public org.springframework.http.ResponseEntity<?> createLogDefinition(Logging.CreateLogDefinitionMultipartModel model) -
updateLogDefinition
@RolesAllowed({"IbisDataAdmin","IbisAdmin","IbisTester"}) @PutMapping(value="/server/logging/settings", consumes="application/json") public org.springframework.http.ResponseEntity<?> updateLogDefinition(@RequestBody Logging.UpdateLogDefinitionModel model)
-