Controller vs CLI notes

delete-all-feed-parser-mappings-by-feed-application

There is currently a mismatch in the command implementation:

  • usage() says:
    Usage: delete-all-feed-parser-mappings-by-feed-application -feedApplicationId <id>
  • but execute() actually checks for:
    -id <feedApplicationId>
  • So for now, the working CLI form is:

    java -jar detect-cli.jar delete-all-feed-parser-mappings-by-feed-application -id 3001

get-all-feed-parser-mappings

The REST controller supports:

  • page
  • size
  • sort
  • search
  • feedApplicationId

The current CLI command supports only:

  • -feedApplicationId
  • -search
  • -page
  • -size

The CLI does not currently expose sort.