use of com.zimbra.soap.admin.message.VerifyIndexRequest in project zm-mailbox by Zimbra.
the class SoapProvisioning method verifyIndex.
public VerifyIndexResult verifyIndex(Account account) throws ServiceException {
VerifyIndexRequest req = new VerifyIndexRequest(new MailboxByAccountIdSelector(account.getId()));
VerifyIndexResponse resp = invokeJaxb(req, getServer(account).getAttr(A_zimbraServiceHostname));
return new VerifyIndexResult(resp.isStatus(), resp.getMessage());
}
Aggregations