use of com.zimbra.soap.admin.message.FlushCacheResponse in project zm-mailbox by Zimbra.
the class FlushCache method handle.
@Override
public Element handle(Element request, Map<String, Object> context) throws ServiceException {
ZimbraSoapContext zsc = getZimbraSoapContext(context);
FlushCacheRequest req = JaxbUtil.elementToJaxb(request);
doFlushCache(this, context, req);
return zsc.jaxbToElement(new FlushCacheResponse());
}
Aggregations