public static void onLoginError(String error) { for (AuthListener listener : mAuthListeners) { listener.onAuthFail(error); } }
public static void onLoginSuccess() { for (AuthListener listener : mAuthListeners) { listener.onAuthSucceed(); } }