001package edu.pdx.cs410J.whitlock; 002 003import edu.pdx.cs410J.AbstractAppointmentBook; 004 005import java.util.Collection; 006 007public class AppointmentBook extends AbstractAppointmentBook<Appointment> { 008 @Override 009 public String getOwnerName() { 010 throw new UnsupportedOperationException("This method is not implemented yet"); 011 } 012 013 @Override 014 public Collection<Appointment> getAppointments() { 015 throw new UnsupportedOperationException("This method is not implemented yet"); 016 } 017 018 @Override 019 public void addAppointment(Appointment appt) { 020 throw new UnsupportedOperationException("This method is not implemented yet"); 021 } 022}