Skip to content

Commit

Permalink
feat: declare GetCalendarGroups request/response contants
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaglini authored and drazen04 committed Nov 11, 2024
1 parent 753d486 commit 4a41ec4
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions common/src/main/java/com/zimbra/common/soap/MailConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ private MailConstants() {}
public static final String E_GET_IMAP_RECENT_CUTOFF_RESPONSE = "GetIMAPRecentCutoffResponse";
public static final String E_IMAP_COPY_REQUEST = "IMAPCopyRequest";
public static final String E_IMAP_COPY_RESPONSE = "IMAPCopyResponse";
public static final String E_GET_CALENDAR_GROUPS_REQUEST = "GetCalendarGroupsRequest";
public static final String E_GET_CALENDAR_GROUPS_RESPONSE = "GetCalendarGroupsResponse";

// noop
public static final QName NO_OP_REQUEST = QName.get(E_NO_OP_REQUEST, NAMESPACE);
Expand Down Expand Up @@ -448,6 +450,10 @@ private MailConstants() {}
QName.get(E_APPLY_OUTGOING_FILTER_RULES_RESPONSE, NAMESPACE);

// Calendar
public static final QName GET_CALENDAR_GROUPS_REQUEST =
QName.get(E_GET_CALENDAR_GROUPS_REQUEST, NAMESPACE);
public static final QName GET_CALENDAR_GROUPS_RESPONSE =
QName.get(E_GET_CALENDAR_GROUPS_RESPONSE, NAMESPACE);
public static final QName GET_APPT_SUMMARIES_REQUEST =
QName.get(E_GET_APPT_SUMMARIES_REQUEST, NAMESPACE);
public static final QName GET_APPOINTMENT_REQUEST =
Expand Down Expand Up @@ -607,8 +613,10 @@ private MailConstants() {}
public static final QName AUTO_COMPLETE_REQUEST = QName.get(E_AUTO_COMPLETE_REQUEST, NAMESPACE);
public static final QName AUTO_COMPLETE_RESPONSE = QName.get(E_AUTO_COMPLETE_RESPONSE, NAMESPACE);

public static final QName FULL_AUTO_COMPLETE_REQUEST = QName.get(E_FULL_AUTO_COMPLETE_REQUEST, NAMESPACE);
public static final QName FULL_AUTO_COMPLETE_RESPONSE = QName.get(E_FULL_AUTO_COMPLETE_RESPONSE, NAMESPACE);
public static final QName FULL_AUTO_COMPLETE_REQUEST =
QName.get(E_FULL_AUTO_COMPLETE_REQUEST, NAMESPACE);
public static final QName FULL_AUTO_COMPLETE_RESPONSE =
QName.get(E_FULL_AUTO_COMPLETE_RESPONSE, NAMESPACE);

// contact ranking mgmt
public static final QName RANKING_ACTION_REQUEST = QName.get(E_RANKING_ACTION_REQUEST, NAMESPACE);
Expand Down Expand Up @@ -1459,5 +1467,4 @@ private MailConstants() {}
public static final String E_COPY_TO_FILES_RESPONSE = "CopyToFilesResponse";
public static final QName COPY_TO_DRIVE_REQUEST = QName.get(E_COPY_TO_FILES_REQUEST, NAMESPACE);
public static final QName COPY_TO_DRIVE_RESPONSE = QName.get(E_COPY_TO_FILES_RESPONSE, NAMESPACE);

}

0 comments on commit 4a41ec4

Please sign in to comment.