105ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root/*
205ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * Copyright (C) 2011 The Android Open Source Project
305ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root *
405ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * Licensed under the Apache License, Version 2.0 (the "License");
505ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * you may not use this file except in compliance with the License.
605ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * You may obtain a copy of the License at
705ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root *
805ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root *      http://www.apache.org/licenses/LICENSE-2.0
905ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root *
1005ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * Unless required by applicable law or agreed to in writing, software
1105ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * distributed under the License is distributed on an "AS IS" BASIS,
1205ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1305ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * See the License for the specific language governing permissions and
1405ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root * limitations under the License.
1505ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root */
1605ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root
1705ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Rootpackage com.android.server.pm;
1805ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root
1905ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Rootpublic class PackageVerificationResponse {
2005ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root    public final int code;
2105ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root
2205ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root    public final int callerUid;
2305ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root
2405ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root    public PackageVerificationResponse(int code, int callerUid) {
2505ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root        this.code = code;
2605ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root        this.callerUid = callerUid;
2705ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root    }
2805ca4c90644921df9193d92b2abdc81ef77e4a62Kenny Root}
29