mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
1.3 KiB
Java
21 lines
1.3 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.background.fxa;
|
|
|
|
import org.mozilla.gecko.background.fxa.FxAccountClient10.RequestDelegate;
|
|
import org.mozilla.gecko.background.fxa.FxAccountClient10.StatusResponse;
|
|
import org.mozilla.gecko.background.fxa.FxAccountClient10.TwoKeys;
|
|
import org.mozilla.gecko.background.fxa.FxAccountClient20.LoginResponse;
|
|
import org.mozilla.gecko.sync.ExtendedJSONObject;
|
|
|
|
public interface FxAccountClient {
|
|
public void createAccountAndGetKeys(final byte[] emailUTF8, final PasswordStretcher passwordStretcher, final RequestDelegate<LoginResponse> delegate);
|
|
public void loginAndGetKeys(final byte[] emailUTF8, final PasswordStretcher passwordStretcher, final RequestDelegate<LoginResponse> requestDelegate);
|
|
public void status(byte[] sessionToken, RequestDelegate<StatusResponse> requestDelegate);
|
|
public void keys(byte[] keyFetchToken, RequestDelegate<TwoKeys> requestDelegate);
|
|
public void sign(byte[] sessionToken, ExtendedJSONObject publicKey, long certificateDurationInMilliseconds, RequestDelegate<String> requestDelegate);
|
|
public void resendCode(byte[] sessionToken, RequestDelegate<Void> delegate);
|
|
}
|