2021-07-28 09:20:22 +02:00
|
|
|
package com.cappielloantonio.play.interfaces;
|
|
|
|
|
|
|
|
|
|
public interface SystemCallback {
|
|
|
|
|
|
|
|
|
|
void onError(Exception exception);
|
|
|
|
|
|
2022-01-11 15:50:22 +01:00
|
|
|
void onSuccess(String password, String token, String salt);
|
2021-07-28 09:20:22 +02:00
|
|
|
}
|