Fix reference to Exchange directory provider class

Bug: 2807264
Change-Id: I916dff07e3159b1537619cb7d6f8a082b5094444
This commit is contained in:
Marc Blank 2010-06-29 13:32:36 -07:00
parent 4e366b9995
commit 270b0c1f83
2 changed files with 4 additions and 4 deletions

View File

@ -339,7 +339,7 @@
<!--EXCHANGE-REMOVE-SECTION-START-->
<!-- In this release, GAL information is used locally only, so we used the same
strict permissions. -->
<!-- NOTE: ExchangeGalProvider will replace ExchangeProvider after integration with
<!-- NOTE: ExchangeDirectoryProvider will replace ExchangeProvider after integration with
the new GAL/contacts implementation -->
<provider
android:name="com.android.exchange.provider.ExchangeProvider"
@ -348,8 +348,8 @@
android:permission="com.android.email.permission.ACCESS_PROVIDER"
/>
<provider
android:name="com.android.exchange.provider.ExchangeGalProvider"
android:authorities="com.android.exchange.gal.provider"
android:name="com.android.exchange.provider.ExchangeDirectoryProvider"
android:authorities="com.android.exchange.directory.provider"
android:readPermission="android.permission.READ_CONTACTS"
android:multiprocess="false"
/>

View File

@ -37,7 +37,7 @@ import android.provider.ContactsContract.RawContacts;
* used solely to provide GAL (Global Address Lookup) service to email address adapters
*/
public class ExchangeDirectoryProvider extends ContentProvider {
public static final String EXCHANGE_GAL_AUTHORITY = "com.android.exchange.gal.provider";
public static final String EXCHANGE_GAL_AUTHORITY = "com.android.exchange.directory.provider";
private static final int GAL_BASE = 0;
private static final int GAL_FILTER = GAL_BASE;