1 /*
2  * Copyright (C) 2017 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 com.android.internal.notification;
18 
19 import android.content.ComponentName;
20 import android.content.Context;
21 import android.content.Intent;
22 
23 import com.android.internal.R;
24 
25 /**
26  * This class provides methods to create intents for NotificationAccessConfirmationActivity.
27  */
28 public final class NotificationAccessConfirmationActivityContract {
29     public static final String EXTRA_USER_ID = "user_id";
30     public static final String EXTRA_COMPONENT_NAME = "component_name";
31     public static final String EXTRA_PACKAGE_TITLE = "package_title";
32 
33     /**
34      * Creates a launcher intent for NotificationAccessConfirmationActivity.
35      */
launcherIntent(Context context, int userId, ComponentName component, String packageTitle)36     public static Intent launcherIntent(Context context, int userId, ComponentName component,
37             String packageTitle) {
38         return new Intent()
39                 .setComponent(ComponentName.unflattenFromString(context.getString(
40                         R.string.config_notificationAccessConfirmationActivity)))
41                 .putExtra(EXTRA_USER_ID, userId)
42                 .putExtra(EXTRA_COMPONENT_NAME, component)
43                 .putExtra(EXTRA_PACKAGE_TITLE, packageTitle);
44     }
45 }
46