| Package | Description |
|---|---|
| com.microsoft.windowsazure.services.blob.models |
This package contains the blob data transfer object classes.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessCondition |
AccessCondition.generateEmptyCondition()
Generates a new empty AccessCondition.
|
static AccessCondition |
AccessCondition.generateIfMatchCondition(String etag)
Returns an access condition such that an operation will be performed only
if the resource's ETag value matches the specified ETag value.
|
static AccessCondition |
AccessCondition.generateIfModifiedSinceCondition(Date lastMotified)
Returns an access condition such that an operation will be performed only
if the resource has been modified since the specified time.
|
static AccessCondition |
AccessCondition.generateIfNoneMatchCondition(String etag)
Returns an access condition such that an operation will be performed only
if the resource's ETag value does not match the specified ETag value.
|
static AccessCondition |
AccessCondition.generateIfNotModifiedSinceCondition(Date lastMotified)
Returns an access condition such that an operation will be performed only
if the resource has not been modified since the specified time.
|
static AccessCondition |
AccessCondition.generateLeaseCondition(String leaseID)
Returns an access condition such that an operation will be performed only
if the resource is accessible under the specified lease id.
|
/**
* 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.
*/