// 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 com.oliodevices.assist.app.api.models.Me; import com.oliodevices.assist.app.api.models.TokenResponse; import retrofit.Callback; import retrofit.RetrofitError; import retrofit.client.Response; // Referenced classes of package com.oliodevices.assist.app.api: // OlioApi, ApiCallback, UserManager, OlioService class k implements Callback { final OlioApi this$0; final ApiCallback val$callback; public void failure(RetrofitError retrofiterror) { val$callback.failure(retrofiterror); } public void success(TokenResponse tokenresponse, Response response) { OlioApi.access$000(OlioApi.this).storeAccessToken(tokenresponse.accessToken); OlioApi.access$100(OlioApi.this).getMe(new Callback() { final OlioApi._cls3 this$1; public void failure(RetrofitError retrofiterror) { callback.failure(retrofiterror); } public void success(Me me, Response response1) { OlioApi.access$000(this$0).storeUserDetails(me.id, me.email); callback.success(); } public volatile void success(Object obj, Response response1) { success((Me)obj, response1); } { this$1 = OlioApi._cls3.this; super(); } }); } public volatile void success(Object obj, Response response) { success((TokenResponse)obj, response); } k() { this$0 = final_olioapi; val$callback = ApiCallback.this; super(); } }