Skip to content

Commit

Permalink
feat(wip): register delete calendar soap service in Mail Service.
Browse files Browse the repository at this point in the history
  • Loading branch information
drazen04 committed Nov 11, 2024
1 parent 5338a24 commit 8b1f47e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ private MailConstants() {}
public static final String E_DELETE_CALENDAR_GROUP_RESPONSE = "DeleteCalendarGroupResponse";
public static final String E_MODIFY_CALENDAR_GROUP_REQUEST = "ModifyCalendarGroupRequest";
public static final String E_MODIFY_CALENDAR_GROUP_RESPONSE = "ModifyCalendarGroupResponse";
public static final String E_DELETE_CALENDAR_REQUEST = "DeleteCalendarRequest";
public static final String E_DELETE_CALENDAR_RESPONSE = "DeleteCalendarResponse";

// noop
public static final QName NO_OP_REQUEST = QName.get(E_NO_OP_REQUEST, NAMESPACE);
Expand Down Expand Up @@ -473,6 +475,11 @@ private MailConstants() {}
public static final QName MODIFY_CALENDAR_GROUP_RESPONSE =
QName.get(E_MODIFY_CALENDAR_GROUP_RESPONSE, NAMESPACE);

public static final QName DELETE_CALENDAR_REQUEST =
QName.get(E_DELETE_CALENDAR_REQUEST, NAMESPACE);
public static final QName DELETE_CALENDAR_RESPONSE =
QName.get(E_DELETE_CALENDAR_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
1 change: 1 addition & 0 deletions soap/src/main/java/com/zimbra/soap/JaxbUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,7 @@ public final class JaxbUtil {
com.zimbra.soap.mail.message.CreateTagResponse.class,
com.zimbra.soap.mail.message.CreateWaitSetRequest.class,
com.zimbra.soap.mail.message.CreateWaitSetResponse.class,
com.zimbra.soap.mail.message.DeleteCalendarRequest.class,
com.zimbra.soap.mail.message.DeclineCounterAppointmentRequest.class,
com.zimbra.soap.mail.message.DeclineCounterAppointmentResponse.class,
com.zimbra.soap.mail.message.DeleteDataSourceRequest.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ public void registerHandlers(DocumentDispatcher dispatcher) {
dispatcher.registerHandler(MailConstants.CREATE_CALENDAR_GROUP_REQUEST, new CreateCalendarGroup());
dispatcher.registerHandler(MailConstants.DELETE_CALENDAR_GROUP_REQUEST, new DeleteCalendarGroup());
dispatcher.registerHandler(MailConstants.MODIFY_CALENDAR_GROUP_REQUEST, new ModifyCalendarGroup());
dispatcher.registerHandler(MailConstants.DELETE_CALENDAR_REQUEST, new DeleteCalendar());
dispatcher.registerHandler(MailConstants.GET_APPT_SUMMARIES_REQUEST, new GetApptSummaries());
dispatcher.registerHandler(MailConstants.GET_APPOINTMENT_REQUEST, new GetAppointment());
dispatcher.registerHandler(MailConstants.SET_APPOINTMENT_REQUEST, new SetAppointment());
Expand Down

0 comments on commit 8b1f47e

Please sign in to comment.