All Downloads are FREE. Search and download functionalities are using the official Maven repository.

microsoft.exchange.webservices.data.core.request.SyncFolderItemsRequest Maven / Gradle / Ivy

There is a newer version: 2.15
Show newest version
/*
 * The MIT License
 * Copyright (c) 2012 Microsoft Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package microsoft.exchange.webservices.data.core.request;

import microsoft.exchange.webservices.data.core.EwsServiceXmlWriter;
import microsoft.exchange.webservices.data.core.EwsUtilities;
import microsoft.exchange.webservices.data.core.ExchangeService;
import microsoft.exchange.webservices.data.core.PropertySet;
import microsoft.exchange.webservices.data.core.XmlElementNames;
import microsoft.exchange.webservices.data.core.enumeration.service.error.ServiceErrorHandling;
import microsoft.exchange.webservices.data.core.response.SyncFolderItemsResponse;
import microsoft.exchange.webservices.data.core.enumeration.misc.ExchangeVersion;
import microsoft.exchange.webservices.data.core.enumeration.service.ServiceObjectType;
import microsoft.exchange.webservices.data.core.enumeration.service.SyncFolderItemsScope;
import microsoft.exchange.webservices.data.core.enumeration.misc.XmlNamespace;
import microsoft.exchange.webservices.data.core.exception.misc.ArgumentException;
import microsoft.exchange.webservices.data.core.exception.service.local.ServiceVersionException;
import microsoft.exchange.webservices.data.misc.ItemIdWrapperList;
import microsoft.exchange.webservices.data.property.complex.FolderId;

/**
 * Represents a SyncFolderItems request.
 */
public class SyncFolderItemsRequest extends
    MultiResponseServiceRequest {

  /**
   * The property set.
   */
  private PropertySet propertySet;

  /**
   * The sync folder id.
   */
  private FolderId syncFolderId;

  /**
   * The sync scope.
   */
  private SyncFolderItemsScope syncScope;

  /**
   * The sync state.
   */
  private String syncState;

  /**
   * The ignored item ids.
   */
  private ItemIdWrapperList ignoredItemIds = new ItemIdWrapperList();

  /**
   * The max changes returned.
   */
  private int maxChangesReturned = 100;

  /**
   * Initializes a new instance of the class.
   *
   * @param service the service
   * @throws Exception
   */
  public SyncFolderItemsRequest(ExchangeService service)
      throws Exception {
    super(service, ServiceErrorHandling.ThrowOnError);
  }

  /**
   * Creates service response.
   *
   * @param service       the service
   * @param responseIndex the response index
   * @return Service response
   */
  @Override
  protected SyncFolderItemsResponse createServiceResponse(
      ExchangeService service, int responseIndex) {
    return new SyncFolderItemsResponse(this.getPropertySet());
  }

  /**
   * Gets the expected response message count.
   *
   * @return Number of expected response messages.
   */
  @Override
  protected int getExpectedResponseMessageCount() {
    return 1;
  }

  /**
   * Gets the name of the XML element.
   *
   * @return XML element name
   */
  @Override public String getXmlElementName() {
    return XmlElementNames.SyncFolderItems;
  }

  /**
   * Gets the name of the response XML element.
   *
   * @return XML element name
   */
  @Override
  protected String getResponseXmlElementName() {
    return XmlElementNames.SyncFolderItemsResponse;
  }

  /**
   * Gets the name of the response message XML element.
   *
   * @return XML element name
   */
  @Override
  protected String getResponseMessageXmlElementName() {
    return XmlElementNames.SyncFolderItemsResponseMessage;
  }

  /**
   * Validates request.
   *
   * @throws Exception the exception
   */
  @Override
  protected void validate() throws Exception {
    super.validate();
    EwsUtilities.validateParam(this.getPropertySet(), "PropertySet");
    EwsUtilities.validateParam(this.getSyncFolderId(), "SyncFolderId");
    this.getSyncFolderId().validate(
        this.getService().getRequestedServerVersion());

    // SyncFolderItemsScope enum was introduced with Exchange2010. Only
    // value NormalItems is valid with previous server versions.
    if (this.getService().getRequestedServerVersion().compareTo(
        ExchangeVersion.Exchange2010) < 0 &&
        this.syncScope != SyncFolderItemsScope.NormalItems) {
      throw new ServiceVersionException(String.format(
          "Enumeration value %s in enumeration type %s is only valid for Exchange version %s or later.", this
              .getSyncScope().toString(), this.getSyncScope()
              .name(), ExchangeVersion.Exchange2010));
    }

    // SyncFolderItems can only handle summary property
    this.getPropertySet()
        .validateForRequest(this, true /* summaryPropertiesOnly */);
  }

  /**
   * Writes XML elements.
   *
   * @param writer the writer
   * @throws Exception the exception
   */
  @Override
  protected void writeElementsToXml(EwsServiceXmlWriter writer)
      throws Exception {
    this.getPropertySet().writeToXml(writer, ServiceObjectType.Item);

    writer.writeStartElement(XmlNamespace.Messages,
        XmlElementNames.SyncFolderId);
    this.getSyncFolderId().writeToXml(writer);
    writer.writeEndElement();

    writer.writeElementValue(XmlNamespace.Messages,
        XmlElementNames.SyncState, this.getSyncState());

    this.getIgnoredItemIds().writeToXml(writer, XmlNamespace.Messages,
        XmlElementNames.Ignore);

    writer.writeElementValue(XmlNamespace.Messages,
        XmlElementNames.MaxChangesReturned, this
            .getMaxChangesReturned());

    if (this.getService().getRequestedServerVersion().compareTo(
        ExchangeVersion.Exchange2010) >= 0) {
      writer.writeElementValue(XmlNamespace.Messages,
          XmlElementNames.SyncScope, this.syncScope);
    }
  }

  /**
   * Gets the request version.
   *
   * @return Earliest Exchange version in which this request is supported.
   */
  @Override
  protected ExchangeVersion getMinimumRequiredServerVersion() {
    return ExchangeVersion.Exchange2007_SP1;
  }

  /**
   * Gets or sets the property set. 
   *
   * @return the property set
   */
  public PropertySet getPropertySet() {
    return this.propertySet;
  }

  /**
   * Sets the property set.
   *
   * @param propertySet the new property set
   */
  public void setPropertySet(PropertySet propertySet) {
    this.propertySet = propertySet;
  }

  /**
   * Gets the sync folder id. 
   *
   * @return the sync folder id
   */
  public FolderId getSyncFolderId() {
    return this.syncFolderId;
  }

  /**
   * Sets the sync folder id.
   *
   * @param syncFolderId the new sync folder id
   */
  public void setSyncFolderId(FolderId syncFolderId) {
    this.syncFolderId = syncFolderId;
  }

  /**
   * Gets the scope of the sync.
   *
   * @return the sync scope
   */
  public SyncFolderItemsScope getSyncScope() {
    return this.syncScope;
  }

  /**
   * Sets the sync scope.
   *
   * @param syncScope the new sync scope
   */
  public void setSyncScope(SyncFolderItemsScope syncScope) {
    this.syncScope = syncScope;
  }

  /**
   * Gets the state of the sync.
   *
   * @return the sync state
   */
  public String getSyncState() {
    return this.syncState;
  }

  /**
   * Sets the sync state.
   *
   * @param syncState the new sync state
   */
  public void setSyncState(String syncState) {
    this.syncState = syncState;
  }

  /**
   * Gets the list of ignored item ids. 
   *
   * @return the ignored item ids
   */
  public ItemIdWrapperList getIgnoredItemIds() {
    return this.ignoredItemIds;
  }

  /**
   * Gets the maximum number of changes returned by SyncFolderItems.
   * Values must be between 1 and 512. Default is 100.
   *
   * @return the max changes returned
   */
  public int getMaxChangesReturned() {

    return this.maxChangesReturned;
  }

  /**
   * Sets the max changes returned.
   *
   * @param maxChangesReturned the new max changes returned
   * @throws ArgumentException the argument exception
   */
  public void setMaxChangesReturned(int maxChangesReturned)
      throws ArgumentException {
    if (maxChangesReturned >= 1 && maxChangesReturned <= 512) {
      this.maxChangesReturned = maxChangesReturned;
    } else {
      throw new ArgumentException("MaxChangesReturned must be between 1 and 512.");
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy