Skip to content
This repository was archived by the owner on Apr 26, 2022. It is now read-only.

Latest commit

 

History

History
21 lines (16 loc) · 737 Bytes

File metadata and controls

21 lines (16 loc) · 737 Bytes

TodoAgent

The TodoAgent is a Dorset intelligent agent that creates and manipulates a user's to do list. The todoAgent can create the list in either a file or a database, depending on the user's configurations. A user can add to, remove from, and get items from the to do list.

Configurations

See sample.conf for configuration example.
Configuration file must be named application.conf

For database functionality, see sample.cfg.xml for additional configuration example.
Configuration file must be named hibernate.cfg.xml

Example Requests

  • ADD [item text]
  • REMOVE [keyword]
  • REMOVE [item number]
  • GET ALL
  • GET ALL [keyword]
  • GET ALL [date(mm/dd/yyyy)]
  • GET [keyword]
  • GET [item number]