AddressBook QBeans JDO Sample Application Analysis
Previous | Next
Application Requirements The Addressbook Sample Application implements the following use cases:
  1. View the list of all the persons in the database and their addresses
  2. Search for a particular person (addressee) by name
  3. Get detailed address information for a particular person
  4. Modify address information in the database
  5. Add new person and address to the list
The application uses the following 5 Business Objects:
  1. Persons
  2. Address
  3. Salutation
  4. Country
  5. Province / State
which include parent – child relationships between the following business object types:
  1. Countries - Provinces/States
  2. Person - Addresses


Previous | Next