blob: 1600101b20f451cd11f56208017435c5065518bb [file] [log] [blame]
Lifu Tang519f0d02018-04-12 16:39:39 -07001/*
2 * Copyright (C) 2018 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
17package com.android.server;
18
19import android.annotation.Nullable;
20import android.app.BroadcastOptions;
21import android.os.Bundle;
22
23/**
24 * Some utility methods for system server.
25 * @hide
26 */
27public class PendingIntentUtils {
28 /**
29 * Creates a Bundle that can be used to restrict the background PendingIntents.
30 * @param bundle when provided, will merge the extra options to restrict background
31 * PendingIntent into the existing bundle.
32 * @return the created Bundle.
33 */
34 public static Bundle createDontSendToRestrictedAppsBundle(@Nullable Bundle bundle) {
35 final BroadcastOptions options = BroadcastOptions.makeBasic();
36 options.setDontSendToRestrictedApps(true);
37 if (bundle == null) {
38 return options.toBundle();
39 }
40 bundle.putAll(options.toBundle());
41 return bundle;
42 }
43
44 // Disable the constructor.
45 private PendingIntentUtils() {}
46}