1c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt/*
2c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * Copyright (C) 2012 The Android Open Source Project
3c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt *
4c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * Licensed under the Apache License, Version 2.0 (the "License");
5c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * you may not use this file except in compliance with the License.
6c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * You may obtain a copy of the License at
7c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt *
8c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt *      http://www.apache.org/licenses/LICENSE-2.0
9c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt *
10c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * Unless required by applicable law or agreed to in writing, software
11c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * distributed under the License is distributed on an "AS IS" BASIS,
12c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * See the License for the specific language governing permissions and
14c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt * limitations under the License.
15c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt */
16c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt
17c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwaltpackage com.android.server.updates;
18c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt
19c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwaltpublic class SmsShortCodesInstallReceiver extends ConfigUpdateInstallReceiver {
20c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt
21c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt    public SmsShortCodesInstallReceiver() {
22c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt        super("/data/misc/sms/", "codes", "metadata/", "version");
23c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt    }
24c6fa237daeaae6107174a9b9d4f591ea8cd26d86Robert Greenwalt}
25