diff options
| author | Tony Mak <tonymak@google.com> | 2015-12-09 00:11:53 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-12-09 00:11:53 +0000 |
| commit | 4b97eecf119e5d7fa6f36b5faa373794c2235f77 (patch) | |
| tree | a8e417296fcc86b80534895a773c465707a379d3 /core/java/android | |
| parent | 811e63604672d0d347f391a21eb1b69aa09a63d2 (diff) | |
| parent | 415369ead5d46f4ae85bd7a64a97a0223916cfe5 (diff) | |
Merge "Add Email.ENTEPRISE_CONTENT_FILTER_URI"
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/ContactsContract.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index c0d95a10a271..10432b548c27 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -6194,6 +6194,14 @@ public final class ContactsContract { "filter"); /** + * It supports the similar semantics as {@link #CONTENT_FILTER_URI} and returns the same + * columns. This URI requires {@link ContactsContract#DIRECTORY_PARAM_KEY} in + * parameters, otherwise it will throw UnsupportedOperationException. + */ + public static final Uri ENTERPRISE_CONTENT_FILTER_URI = Uri.withAppendedPath( + CONTENT_URI, "filter_enterprise"); + + /** * The email address. * <P>Type: TEXT</P> */ |
