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 32 /** 33 * Creates a launcher intent for NotificationAccessConfirmationActivity. 34 */ launcherIntent(Context context, int userId, ComponentName component)35 public static Intent launcherIntent(Context context, int userId, ComponentName component) { 36 return new Intent() 37 .setComponent(ComponentName.unflattenFromString(context.getString( 38 R.string.config_notificationAccessConfirmationActivity))) 39 .putExtra(EXTRA_USER_ID, userId) 40 .putExtra(EXTRA_COMPONENT_NAME, component); 41 } 42 } 43