1 /**
2 * Copyright 2011 The Kuali Foundation Licensed under the Educational Community
3 * License, Version 2.0 (the "License"); you may not use this file except in
4 * compliance with the License. You may obtain a copy of the License at
5 *
6 * http://www.osedu.org/licenses/ECL-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 * License for the specific language governing permissions and limitations under
12 * the License.
13 */
14 package org.kuali.mobility.events.service;
15
16 import java.util.List;
17
18 public interface EventsService {
19
20 public void addEvent(String eventDate, String startTime, String endTime, String title, String eventBody, String user, String timeZoneId);
21
22 public List getEvents(String a, String b);
23
24 public void updateEvent(int eventId, String startTime, String endTime, String title, String eventBody, String eventDate, String user);
25
26 public void deleteEvent(int eventId);
27
28 public String synchronizeWithGoogleAccount(String emailId, String password);
29
30 }