public class DeleteContainerOptions extends BlobServiceOptions
deleteContainer request. These options include a server response timeout for
the request and access conditions that specify whether to perform the
operation or not depending on the values of the Etag or last modified time of
the container. Options that are not set will not be passed to the server with
a request.| Constructor and Description |
|---|
DeleteContainerOptions() |
| Modifier and Type | Method and Description |
|---|---|
com.microsoft.windowsazure.core.utils.AccessConditionHeader |
getAccessCondition()
Gets the access conditions associated with this
DeleteContainerOptions instance. |
DeleteContainerOptions |
setAccessCondition(com.microsoft.windowsazure.core.utils.AccessConditionHeader accessCondition)
Sets the access conditions associated with this
DeleteContainerOptions instance. |
DeleteContainerOptions |
setTimeout(Integer timeout)
Sets the server request timeout value associated with this
DeleteContainerOptions instance. |
getTimeoutpublic DeleteContainerOptions setTimeout(Integer timeout)
DeleteContainerOptions instance.
The timeout value only affects calls made on methods where this
DeleteContainerOptions instance is passed as a parameter.
setTimeout in class BlobServiceOptionstimeout - The server request timeout value to set in milliseconds.DeleteContainerOptions instance.public com.microsoft.windowsazure.core.utils.AccessConditionHeader getAccessCondition()
DeleteContainerOptions instance.AccessCondition reference containing the Etag and last
modified time conditions for performing the delete container
operation, or null if not set.public DeleteContainerOptions setAccessCondition(com.microsoft.windowsazure.core.utils.AccessConditionHeader accessCondition)
DeleteContainerOptions instance. By default, the delete container
operation will delete the container unconditionally. Use this method to
specify conditions on the Etag or last modified time value for performing
the delete container operation.
The accessCondition value only affects calls made on methods
where this DeleteContainerOptions instance is passed as a
parameter.
accessCondition - An AccessCondition reference containing the Etag and
last modified time conditions for performing the delete
container operation. Specify null to make the
operation unconditional.DeleteContainerOptions instance./**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/