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

Commit 2c1dcfda authored by Michael Chan's avatar Michael Chan Committed by Android (Google) Code Review
Browse files

Merge "Added identity and namespace to Calendar Attendees"

parents 6947fd0f 37f1d297
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";
    }