Class EmptyFolderRequest
- java.lang.Object
-
- microsoft.exchange.webservices.data.core.request.ServiceRequestBase<T>
-
- microsoft.exchange.webservices.data.core.request.SimpleServiceRequestBase<ServiceResponseCollection<TResponse>>
-
- microsoft.exchange.webservices.data.core.request.MultiResponseServiceRequest<TResponse>
-
- microsoft.exchange.webservices.data.core.request.EmptyFolderRequest
-
public final class EmptyFolderRequest extends MultiResponseServiceRequest<TResponse>
Represents an EmptyFolder request.
-
-
Constructor Summary
Constructors Constructor Description EmptyFolderRequest(ExchangeService service, ServiceErrorHandling errorHandlingMode)Initializes a new instance of the EmptyFolderRequest class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ServiceResponsecreateServiceResponse(ExchangeService service, int responseIndex)Creates the service response.DeleteModegetDeleteMode()Gets the delete mode.protected booleangetDeleteSubFolders()Gets a value indicating whether empty folder should also delete sub folder.protected intgetExpectedResponseMessageCount()Gets the expected response message count.FolderIdWrapperListgetFolderIds()Gets the folder ids.protected ExchangeVersiongetMinimumRequiredServerVersion()Gets the request version.protected StringgetResponseMessageXmlElementName()Gets the name of the response message XML element.protected StringgetResponseXmlElementName()Gets the name of the response XML element.StringgetXmlElementName()Gets the name of the XML element.voidsetDeleteMode(DeleteMode deleteMode)Gets the delete mode.evoidsetDeleteSubFolders(boolean value)Sets a value indicating whether empty folder should also delete sub folder.protected voidvalidate()Validates request.protected voidwriteAttributesToXml(EwsServiceXmlWriter writer)Writes XML attribute.protected voidwriteElementsToXml(EwsServiceXmlWriter writer)Writes XML elements.-
Methods inherited from class microsoft.exchange.webservices.data.core.request.MultiResponseServiceRequest
endExecute, execute, getErrorHandlingMode, parseResponse
-
Methods inherited from class microsoft.exchange.webservices.data.core.request.SimpleServiceRequestBase
beginExecute, endInternalExecute, internalExecute
-
Methods inherited from class microsoft.exchange.webservices.data.core.request.ServiceRequestBase
buildEwsHttpPoolingWebRequest, buildEwsHttpWebRequest, getEwsHttpWebResponse, getResponseStream, getService, processWebException, readPreamble, readResponse, readResponse, readSoapFault, throwIfNotSupportedByRequestedServerVersion, traceResponse, validateAndEmitRequest, writeBodyToXml, writeToXml
-
-
-
-
Constructor Detail
-
EmptyFolderRequest
public EmptyFolderRequest(ExchangeService service, ServiceErrorHandling errorHandlingMode) throws Exception
Initializes a new instance of the EmptyFolderRequest class.- Parameters:
service- The service.errorHandlingMode- Indicates how errors should be handled.- Throws:
Exception- on error
-
-
Method Detail
-
validate
protected void validate() throws Exception
Validates request.- Overrides:
validatein classServiceRequestBase<ServiceResponseCollection<ServiceResponse>>- Throws:
Exception- on error
-
getExpectedResponseMessageCount
protected int getExpectedResponseMessageCount()
Gets the expected response message count.- Specified by:
getExpectedResponseMessageCountin classMultiResponseServiceRequest<ServiceResponse>- Returns:
- Number of expected response messages.
-
createServiceResponse
protected ServiceResponse createServiceResponse(ExchangeService service, int responseIndex)
Creates the service response.- Specified by:
createServiceResponsein classMultiResponseServiceRequest<ServiceResponse>- Parameters:
service- The service.responseIndex- Index of the response.- Returns:
- Service object
-
getXmlElementName
public String getXmlElementName()
Gets the name of the XML element.- Specified by:
getXmlElementNamein classServiceRequestBase<ServiceResponseCollection<ServiceResponse>>- Returns:
- XML element name.
-
getResponseXmlElementName
protected String getResponseXmlElementName()
Gets the name of the response XML element.- Specified by:
getResponseXmlElementNamein classServiceRequestBase<ServiceResponseCollection<ServiceResponse>>- Returns:
- XML element name.
-
getResponseMessageXmlElementName
protected String getResponseMessageXmlElementName()
Gets the name of the response message XML element.- Specified by:
getResponseMessageXmlElementNamein classMultiResponseServiceRequest<ServiceResponse>- Returns:
- XML element name.
-
writeElementsToXml
protected void writeElementsToXml(EwsServiceXmlWriter writer) throws Exception
Writes XML elements.- Specified by:
writeElementsToXmlin classServiceRequestBase<ServiceResponseCollection<ServiceResponse>>- Parameters:
writer- The writer.- Throws:
Exception
-
writeAttributesToXml
protected void writeAttributesToXml(EwsServiceXmlWriter writer) throws ServiceXmlSerializationException
Writes XML attribute.- Parameters:
writer- The writer.- Throws:
ServiceXmlSerializationException
-
getMinimumRequiredServerVersion
protected ExchangeVersion getMinimumRequiredServerVersion()
Gets the request version.- Specified by:
getMinimumRequiredServerVersionin classServiceRequestBase<ServiceResponseCollection<ServiceResponse>>- Returns:
- Earliest Exchange version in which this request is supported.
-
getFolderIds
public FolderIdWrapperList getFolderIds()
Gets the folder ids.- Returns:
- The folder ids.
-
getDeleteSubFolders
protected boolean getDeleteSubFolders()
Gets a value indicating whether empty folder should also delete sub folder.- Returns:
- true if empty folder should also delete sub folder, otherwise false.
-
setDeleteSubFolders
public void setDeleteSubFolders(boolean value)
Sets a value indicating whether empty folder should also delete sub folder.
-
getDeleteMode
public DeleteMode getDeleteMode()
Gets the delete mode.- Returns:
- the delete mode
-
setDeleteMode
public void setDeleteMode(DeleteMode deleteMode)
Gets the delete mode.e- Parameters:
deleteMode- the new delete mode
-
-