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