use of com.zimbra.soap.admin.message.GetLicenseInfoRequest in project zm-mailbox by Zimbra.
the class TestJaxbProvisioning method testLicenseInfo.
@Test
public void testLicenseInfo() throws Exception {
ZimbraLog.test.debug("Starting testLicenseInfo");
GetLicenseInfoRequest req = new GetLicenseInfoRequest();
GetLicenseInfoResponse resp = prov.invokeJaxb(req);
assertNotNull("GetLicensInfoResponse", resp);
LicenseExpirationInfo expires = resp.getExpiration();
assertNotNull("Expiration Info", expires);
assertNotNull("getDate result", expires.getDate());
}
Aggregations