Interface CalendarServiceAsync
-
public interface CalendarServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
countUserEvents(String username, Date end, com.google.gwt.user.client.rpc.AsyncCallback<Integer> callback)
void
deleteEvent(long eventId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
find(Date startDate, Date endDate, Date expireFrom, Date expireTo, Integer frequency, String title, String type, String subtype, Integer status, Integer maxRecords, com.google.gwt.user.client.rpc.AsyncCallback<GUICalendarEvent[]> callback)
void
getEvent(long eventId, com.google.gwt.user.client.rpc.AsyncCallback<GUICalendarEvent> callback)
void
saveEvent(GUICalendarEvent event, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
-
-
Method Detail
-
saveEvent
void saveEvent(GUICalendarEvent event, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
getEvent
void getEvent(long eventId, com.google.gwt.user.client.rpc.AsyncCallback<GUICalendarEvent> callback)
-
deleteEvent
void deleteEvent(long eventId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
countUserEvents
void countUserEvents(String username, Date end, com.google.gwt.user.client.rpc.AsyncCallback<Integer> callback)
-
-