summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/background/fxa/FxAccountRemoteError.java
blob: 5a89561cb042f287bb2ed2118372ba992b2d4adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* 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;

public interface FxAccountRemoteError {
  public static final int ATTEMPT_TO_CREATE_AN_ACCOUNT_THAT_ALREADY_EXISTS = 101;
  public static final int ATTEMPT_TO_ACCESS_AN_ACCOUNT_THAT_DOES_NOT_EXIST = 102;
  public static final int INCORRECT_PASSWORD = 103;
  public static final int ATTEMPT_TO_OPERATE_ON_AN_UNVERIFIED_ACCOUNT = 104;
  public static final int INVALID_VERIFICATION_CODE = 105;
  public static final int REQUEST_BODY_WAS_NOT_VALID_JSON = 106;
  public static final int REQUEST_BODY_CONTAINS_INVALID_PARAMETERS = 107;
  public static final int REQUEST_BODY_MISSING_REQUIRED_PARAMETERS = 108;
  public static final int INVALID_REQUEST_SIGNATURE = 109;
  public static final int INVALID_AUTHENTICATION_TOKEN = 110;
  public static final int INVALID_AUTHENTICATION_TIMESTAMP = 111;
  public static final int CONTENT_LENGTH_HEADER_WAS_NOT_PROVIDED = 112;
  public static final int REQUEST_BODY_TOO_LARGE = 113;
  public static final int CLIENT_HAS_SENT_TOO_MANY_REQUESTS = 114;
  public static final int INVALID_NONCE_IN_REQUEST_SIGNATURE = 115;
  public static final int ENDPOINT_IS_NO_LONGER_SUPPORTED = 116;
  public static final int INCORRECT_LOGIN_METHOD_FOR_THIS_ACCOUNT = 117;
  public static final int INCORRECT_KEY_RETRIEVAL_METHOD_FOR_THIS_ACCOUNT = 118;
  public static final int INCORRECT_API_VERSION_FOR_THIS_ACCOUNT = 119;
  public static final int INCORRECT_EMAIL_CASE = 120;
  public static final int ACCOUNT_LOCKED = 121;
  public static final int UNKNOWN_DEVICE = 123;
  public static final int DEVICE_SESSION_CONFLICT = 124;
  public static final int SERVICE_TEMPORARILY_UNAVAILABLE_DUE_TO_HIGH_LOAD = 201;
  public static final int UNKNOWN_ERROR = 999;
}