private void initItemsType()

in src/inventory/src/main/java/com/google/abmedge/inventory/InventoryController.java [253:263]


  private void initItemsType() {
    activeItemsType = System.getenv(ACTIVE_TYPE_ENV_VAR);
    if (StringUtils.isBlank(activeItemsType)) {
      LOGGER.warn(
          String.format(
              "'%s' environment variable is not set; " + "thus defaulting to: %s",
              ACTIVE_TYPE_ENV_VAR, ALL_ITEMS));
      activeItemsType = ALL_ITEMS;
    }
    LOGGER.info(String.format("Active items type is: %s", activeItemsType));
  }