// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.oliodevices.assist.app.api; import java.util.List; import retrofit.Callback; public interface TimeZoneService { public static class City { public String description; public String place_id; public City() { } } public static class CityResponse { public List predictions; public CityResponse() { } } public static class TimeZoneResponse { public String status; public String timeZoneId; public TimeZoneResponse() { } } public static final String GOOGLE_TIMEZONE_API_KEY = "com.google.android.geo.API_KEY"; public static final String GOOGLE_TIMEZONE_CHINA_ENDPOINT_URL = "http://maps.google.cn/"; public static final String GOOGLE_TIMEZONE_ENDPOINT_URL = "https://maps.googleapis.com/"; public static final String GOOGLE_WEB_PLACES_API_KEY = "com.google.web.places.API_KEY"; public static final String TYPES_CITIES_ONLY = "(cities)"; public static final long WHOLE_WORLD_RADIUS = 0x1312d00L; public abstract CityResponse autocomplete(String s, String s1, int i, long l, String s2); public abstract void resolve(String s, String s1, String s2, Callback callback); }