Skip to content

Commit 2c1dcfd

Browse files
Michael ChanAndroid (Google) Code Review
authored andcommitted
Merge "Added identity and namespace to Calendar Attendees"
2 parents 6947fd0 + 37f1d29 commit 2c1dcfd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/current.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16265,6 +16265,8 @@ package android.provider {
1626516265

1626616266
protected static abstract interface CalendarContract.AttendeesColumns {
1626716267
field public static final java.lang.String ATTENDEE_EMAIL = "attendeeEmail";
16268+
field public static final java.lang.String ATTENDEE_IDENTITY = "attendeeIdentity";
16269+
field public static final java.lang.String ATTENDEE_ID_NAMESPACE = "attendeeIdNamespace";
1626816270
field public static final java.lang.String ATTENDEE_NAME = "attendeeName";
1626916271
field public static final java.lang.String ATTENDEE_RELATIONSHIP = "attendeeRelationship";
1627016272
field public static final java.lang.String ATTENDEE_STATUS = "attendeeStatus";

core/java/android/provider/CalendarContract.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -760,18 +760,16 @@ protected interface AttendeesColumns {
760760
/**
761761
* The identity of the attendee as referenced in
762762
* {@link ContactsContract.CommonDataKinds.Identity#IDENTITY}.
763-
* This is required only if ATTENDEE_ID_NAMESPACE is present. Column name.
763+
* This is required only if {@link #ATTENDEE_ID_NAMESPACE} is present. Column name.
764764
* <P>Type: STRING</P>
765-
* @hide
766765
*/
767766
public static final String ATTENDEE_IDENTITY = "attendeeIdentity";
768767

769768
/**
770769
* The identity name space of the attendee as referenced in
771770
* {@link ContactsContract.CommonDataKinds.Identity#NAMESPACE}.
772-
* This is required only if ATTENDEE_IDENTITY is present. Column name.
771+
* This is required only if {@link #ATTENDEE_IDENTITY} is present. Column name.
773772
* <P>Type: STRING</P>
774-
* @hide
775773
*/
776774
public static final String ATTENDEE_ID_NAMESPACE = "attendeeIdNamespace";
777775
}

0 commit comments

Comments
 (0)