use of com.zimbra.client.event.ZDeleteEvent in project zm-mailbox by Zimbra.
the class ZMailbox method handleDeleted.
private void handleDeleted(Element deleted) throws ServiceException {
if (deleted == null) {
return;
}
String ids = deleted.getAttribute(MailConstants.A_ID, null);
if (ids == null) {
return;
}
ZDeleteEvent de = new ZDeleteEvent(ids);
for (ZEventHandler handler : mHandlers) {
handler.handleDelete(de, this);
}
}
Aggregations