// assign doctor as patient's doctor
patient.setDoctor(doctor);
System.out.println("*** Set doctor as patient's doctor. Patient info is now:\n" + patient);
// let's say our doctor made enough money to retire after helping out our patient, Bill.
providerProcessor.retireDoctor(doctor);
// let's create a new patient and find a doctor for him
Patient patient2 = new Patient("Larry", "Page");
patient2.setAilmentType("financial");
patient2.setAilmentDescription("Money coming out the wazoo.");