1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.accounts.cts;
18 
19 import android.accounts.AccountAuthenticatorResponse;
20 import android.accounts.AccountManager;
21 import android.app.Activity;
22 import android.content.Context;
23 import android.content.Intent;
24 import android.os.Bundle;
25 
26 /**
27  * An activity.
28  */
29 public class AccountRemovalDummyActivity extends Activity {
30 
createIntent(Context context)31     public static Intent createIntent(Context context) {
32         return new Intent(context, AccountRemovalDummyActivity.class);
33     }
34 
35     private AccountAuthenticatorResponse mResponse;
36 
37     @Override
onCreate(Bundle savedInstanceState)38     protected void onCreate(Bundle savedInstanceState) {
39         super.onCreate(savedInstanceState);
40         Bundle input = (savedInstanceState == null) ? getIntent().getExtras() : savedInstanceState;
41         mResponse = input
42                 .getParcelable(MockAccountAuthenticator.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE);
43         // Do verification and then remove the account
44         final Bundle result = new Bundle();
45         result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, true);
46         mResponse.onResult(result);
47         finish();
48     }
49 }
50