use of com.zimbra.soap.admin.message.GetConfigResponse in project zm-mailbox by Zimbra.
the class SoapProvisioning method getConfig.
@Override
public Config getConfig(String needAttr) throws ServiceException {
GetConfigRequest req = new GetConfigRequest();
Attr attr = new Attr();
attr.setKey(needAttr);
req.setAttr(attr);
GetConfigResponse resp = invokeJaxb(req);
return new SoapConfig(resp, this);
}
Aggregations