1 /*
2  * Copyright (C) 2021 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.server.pm;
18 
19 import android.annotation.UserIdInt;
20 import android.content.pm.ResolveInfo;
21 import android.os.UserHandle;
22 
23 public final class CrossProfileDomainInfo {
24     /* ResolveInfo for IntentForwarderActivity to send the intent to the other profile */
25     final ResolveInfo mResolveInfo;
26     int mHighestApprovalLevel;
27     @UserIdInt
28     final int mTargetUserId;
29 
CrossProfileDomainInfo(ResolveInfo resolveInfo, int highestApprovalLevel, @UserIdInt int targetUserId)30     CrossProfileDomainInfo(ResolveInfo resolveInfo, int highestApprovalLevel, @UserIdInt
31             int targetUserId) {
32         this.mResolveInfo = resolveInfo;
33         this.mHighestApprovalLevel = highestApprovalLevel;
34         this.mTargetUserId = targetUserId;
35     }
36 
CrossProfileDomainInfo(ResolveInfo resolveInfo, int highestApprovalLevel)37     CrossProfileDomainInfo(ResolveInfo resolveInfo, int highestApprovalLevel) {
38         this.mResolveInfo = resolveInfo;
39         this.mHighestApprovalLevel = highestApprovalLevel;
40         this.mTargetUserId = UserHandle.USER_CURRENT; // default as current user
41     }
42 
43     @Override
toString()44     public String toString() {
45         return "CrossProfileDomainInfo{"
46                 + "resolveInfo=" + mResolveInfo
47                 + ", highestApprovalLevel=" + mHighestApprovalLevel
48                 + ", targetUserId= " + mTargetUserId
49                 + '}';
50     }
51 }
52