/* * DavMail POP/IMAP/SMTP/CalDav/LDAP Exchange Gateway * Copyright (C) 2010 Mickael Guessant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package davmail.exchange.ews; import davmail.exchange.XMLStreamUtil; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import java.io.IOException; import java.io.Writer; /** * GetUserAvailability method. */ public class GetUserAvailabilityMethod extends EWSMethod { protected final String attendee; protected final String start; protected final String end; protected String mergedFreeBusy; protected final int interval; /** * Build EWS method * * @param attendee attendee email address * @param start start date in Exchange zulu format * @param end end date in Exchange zulu format * @param interval freebusy interval in minutes */ public GetUserAvailabilityMethod(String attendee, String start, String end, int interval) { super("FreeBusy", "GetUserAvailabilityRequest"); this.attendee = attendee; this.start = start; this.end = end; this.interval = interval; } @Override protected void writeSoapBody(Writer writer) throws IOException { // write UTC timezone writer.write("" + "0" + "" + "0" + "02:00:00" + "1" + "3" + "Sunday" + "" + "" + "0" + "02:00:00" + "1" + "10" + "Sunday" + "" + ""); // write attendee address writer.write("" + "" + "" + ""); writer.write(attendee); writer.write("" + "" + "Required" + "" + ""); // freebusy range writer.write("" + "" + ""); writer.write(start); writer.write("" + ""); writer.write(end); writer.write("" + "" + "" + interval + "" + "MergedOnly" + ""); } @Override protected void handleCustom(XMLStreamReader reader) throws XMLStreamException { if (XMLStreamUtil.isStartTag(reader, "MergedFreeBusy")) { this.mergedFreeBusy = XMLStreamUtil.getElementText(reader); } } /** * Get merged freebusy string. * * @return freebusy string */ public String getMergedFreeBusy() { return mergedFreeBusy; } }