use of com.zimbra.soap.admin.message.GetAllUCServicesRequest in project zm-mailbox by Zimbra.
the class SoapProvisioning method getAllUCServices.
@Override
public List<UCService> getAllUCServices() throws ServiceException {
ArrayList<UCService> result = new ArrayList<UCService>();
GetAllUCServicesResponse resp = invokeJaxb(new GetAllUCServicesRequest());
for (UCServiceInfo ucServiceInfo : resp.getUCServiceList()) {
result.add(new SoapUCService(ucServiceInfo, this));
}
return result;
}
Aggregations