in src/inventory/src/main/java/com/google/abmedge/inventory/InventoryController.java [158:163]
public ResponseEntity<Void> switchType(@PathVariable String type) {
this.activeItemsType = type;
LOGGER.info(
String.format("The active inventory type has been changed to: %s", activeItemsType));
return new ResponseEntity<>(HttpStatus.OK);
}