diff options
| author | 2011-05-24 13:00:29 -0700 | |
|---|---|---|
| committer | 2011-06-08 14:59:51 -0700 | |
| commit | 4a8c478dfadbc86938576f72c25799893cb3b92c (patch) | |
| tree | 2e5e46f0ff109aa24f36bf19211e2680d17181ec | |
| parent | c8307c885f8462f2baf9f06c9916d1521f7fdcfb (diff) | |
Add a URI for recurring event exceptions
Part of a larger Calendar provider change.
Bug 4473786
Change-Id: I0cb4260ea590da0c48b55d0ca3ee586e00d37b36
| -rw-r--r-- | core/java/android/provider/Calendar.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/Calendar.java b/core/java/android/provider/Calendar.java index a06d0f6af732..60d9f1afa1eb 100644 --- a/core/java/android/provider/Calendar.java +++ b/core/java/android/provider/Calendar.java @@ -1206,6 +1206,14 @@ public final class Calendar { Uri.parse("content://" + AUTHORITY + "/events"); /** + * The content:// style URI for recurring event exceptions. Insertions require an + * appended event ID. Deletion of exceptions requires both the original event ID and + * the exception event ID (see {@link Uri.Builder#appendPath}). + */ + public static final Uri EXCEPTION_CONTENT_URI = + Uri.parse("content://" + AUTHORITY + "/exception"); + + /** * The default sort order for this table */ private static final String DEFAULT_SORT_ORDER = ""; |