use of com.zimbra.client.ZMailbox.ZAppointmentResult in project zm-mailbox by Zimbra.
the class TestSearchTask method init.
@BeforeClass
public static void init() throws ServiceException {
TestUtil.deleteAccountIfExists(USER_NAME);
TestUtil.createAccount(USER_NAME);
mbox = TestUtil.getZMailbox(USER_NAME);
for (int i = 0; i < numTasks; i++) {
ZOutgoingMessage msg = TestUtil.getOutgoingMessage(USER_NAME, null, String.format("task body %d", i), null);
ZInvite inv = new ZInvite();
ZInvite.ZComponent comp = new ZComponent();
comp.setIsAllDay(true);
comp.setStatus(ZStatus.NEED);
comp.setLocation("mount erebor");
comp.setPercentCompleted("0");
comp.setPriority("0");
comp.setName(String.format("destroy the one ring %d", i));
comp.setOrganizer(new ZOrganizer(mbox.getName()));
inv.getComponents().add(comp);
ZAppointmentResult resp = mbox.createTask("15", null, msg, inv, null);
ids.add(resp.getInviteId());
}
}
Aggregations