Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | package org.mozilla.gecko.background.fxa; |
michael@0 | 6 | |
michael@0 | 7 | public interface FxAccountRemoteError { |
michael@0 | 8 | public static final int ATTEMPT_TO_CREATE_AN_ACCOUNT_THAT_ALREADY_EXISTS = 101; |
michael@0 | 9 | public static final int ATTEMPT_TO_ACCESS_AN_ACCOUNT_THAT_DOES_NOT_EXIST = 102; |
michael@0 | 10 | public static final int INCORRECT_PASSWORD = 103; |
michael@0 | 11 | public static final int ATTEMPT_TO_OPERATE_ON_AN_UNVERIFIED_ACCOUNT = 104; |
michael@0 | 12 | public static final int INVALID_VERIFICATION_CODE = 105; |
michael@0 | 13 | public static final int REQUEST_BODY_WAS_NOT_VALID_JSON = 106; |
michael@0 | 14 | public static final int REQUEST_BODY_CONTAINS_INVALID_PARAMETERS = 107; |
michael@0 | 15 | public static final int REQUEST_BODY_MISSING_REQUIRED_PARAMETERS = 108; |
michael@0 | 16 | public static final int INVALID_REQUEST_SIGNATURE = 109; |
michael@0 | 17 | public static final int INVALID_AUTHENTICATION_TOKEN = 110; |
michael@0 | 18 | public static final int INVALID_AUTHENTICATION_TIMESTAMP = 111; |
michael@0 | 19 | public static final int INVALID_AUTHENTICATION_NONCE = 115; |
michael@0 | 20 | public static final int CONTENT_LENGTH_HEADER_WAS_NOT_PROVIDED = 112; |
michael@0 | 21 | public static final int REQUEST_BODY_TOO_LARGE = 113; |
michael@0 | 22 | public static final int CLIENT_HAS_SENT_TOO_MANY_REQUESTS = 114; |
michael@0 | 23 | public static final int INVALID_NONCE_IN_REQUEST_SIGNATURE = 115; |
michael@0 | 24 | public static final int ENDPOINT_IS_NO_LONGER_SUPPORTED = 116; |
michael@0 | 25 | public static final int INCORRECT_LOGIN_METHOD_FOR_THIS_ACCOUNT = 117; |
michael@0 | 26 | public static final int INCORRECT_KEY_RETRIEVAL_METHOD_FOR_THIS_ACCOUNT = 118; |
michael@0 | 27 | public static final int INCORRECT_API_VERSION_FOR_THIS_ACCOUNT = 119; |
michael@0 | 28 | public static final int INCORRECT_EMAIL_CASE = 120; |
michael@0 | 29 | public static final int SERVICE_TEMPORARILY_UNAVAILABLE_DUE_TO_HIGH_LOAD = 201; |
michael@0 | 30 | public static final int UNKNOWN_ERROR = 999; |
michael@0 | 31 | } |