Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37f1d297 authored by Michael Chan's avatar Michael Chan
Browse files

Added identity and namespace to Calendar Attendees

Bug: 6353721
Change-Id: I8cf7a5bbeb5380320b9bb11875168bef4e180b31
parent 62d52f9f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -16265,6 +16265,8 @@ package android.provider {
  protected static abstract interface CalendarContract.AttendeesColumns {
    field public static final java.lang.String ATTENDEE_EMAIL = "attendeeEmail";
    field public static final java.lang.String ATTENDEE_IDENTITY = "attendeeIdentity";
    field public static final java.lang.String ATTENDEE_ID_NAMESPACE = "attendeeIdNamespace";
    field public static final java.lang.String ATTENDEE_NAME = "attendeeName";
    field public static final java.lang.String ATTENDEE_RELATIONSHIP = "attendeeRelationship";
    field public static final java.lang.String ATTENDEE_STATUS = "attendeeStatus";
+2 −4
Original line number Diff line number Diff line
@@ -760,18 +760,16 @@ public final class CalendarContract {
        /**
         * The identity of the attendee as referenced in
         * {@link ContactsContract.CommonDataKinds.Identity#IDENTITY}.
         * This is required only if ATTENDEE_ID_NAMESPACE is present. Column name.
         * This is required only if {@link #ATTENDEE_ID_NAMESPACE} is present. Column name.
         * <P>Type: STRING</P>
         * @hide
         */
        public static final String ATTENDEE_IDENTITY = "attendeeIdentity";

        /**
         * The identity name space of the attendee as referenced in
         * {@link ContactsContract.CommonDataKinds.Identity#NAMESPACE}.
         * This is required only if ATTENDEE_IDENTITY is present. Column name.
         * This is required only if {@link #ATTENDEE_IDENTITY} is present. Column name.
         * <P>Type: STRING</P>
         * @hide
         */
        public static final String ATTENDEE_ID_NAMESPACE = "attendeeIdNamespace";
    }