use of com.zimbra.soap.account.message.GetInfoRequest in project zm-mailbox by Zimbra.
the class ZMailbox method getAccountInfo.
public ZGetInfoResult getAccountInfo(boolean refresh) throws ServiceException {
if (mGetInfoResult == null || refresh) {
GetInfoRequest req = new GetInfoRequest(NOT_ZIMLETS);
GetInfoResponse res = invokeJaxb(req);
mGetInfoResult = new ZGetInfoResult(res);
}
return mGetInfoResult;
}
Aggregations