1 package edu.pdx.cs410J.whitlock.client;
2
3 import com.google.gwt.user.client.rpc.RemoteService;
4 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
6 /**
7 * A GWT remote service that returns a dummy appointment book
8 */
9 @RemoteServiceRelativePath("appointments")
10 public interface AppointmentBookService extends RemoteService {
11
12 /**
13 * Returns the current date and time on the server
14 * @param numberOfAppointments
15 */
16 public AppointmentBook createAppointmentBook(int numberOfAppointments);
17
18 }