1
2
3
4
5 package org.kuali.mobility.calendars.entity;
6
7
8
9
10
11
12
13
14 public enum GoogleCalendarSynchronizationStatus {
15
16 SUCCESS("events.googlecalendarsynchronization.success"),
17 MALFORMED_URL_EXCEPTION("events.googlecalendarsynchronization.malformedurl_exception"),
18 IOEXCEPTION("events.googlecalendarsynchronization.ioexception"),
19 AUTHENTICATION_EXCEPTION("events.googlecalendarsynchronization.authentication_exception"),
20 SERVICE_EXCEPTION("events.googlecalendarsynchronization.service_exception");
21 private String status;
22
23 private GoogleCalendarSynchronizationStatus(String status) {
24 this.status = status;
25 }
26
27 public String toString() {
28 return status;
29 }
30 }