public Setting getSetting(Calendar service, String settingId) throws IOException {
   Setting setting = service.settings().get(settingId).execute();
   return setting;
 }
 public Settings getSettings(Calendar service) throws IOException {
   Settings settings = service.settings().list().execute();
   return settings;
 }