Back to project page built.io-todo-android.
The source code is released under:
Terms of Use & Licensing<br />Hand Drawn Web Icon Set is free and it will always be free. You can use it for both commercial and non-commercial projects. You can modify the icons anyway you like. Howe...
If you think the Android project built.io-todo-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raweng.built.userInterface; //w ww . jav a 2s.c o m import com.raweng.built.BuiltError; import com.raweng.built.BuiltUser; /** * {@link BuiltUILoginController} and {@link BuiltUISignUpController} class callback. * * Notify class after {@link BuiltUILoginController} and {@link BuiltUISignUpController} network calls has been executed. * * @author raw engineering, Inc * */ public abstract class BuiltAuthResultCallBack { public abstract void onSuccess(BuiltUser user); /** * Triggered after network call executes successfully. * * @param user * user BuiltUser object to store authToken or Register user. * */ void onComplete(BuiltUser user){ onSuccess(user); } /** * Triggered after network call execution fails. * * @param error * error */ public abstract void onError(BuiltError error); /** * Called always after onSuccess() or onError(). * */ public abstract void onAlways(); }