public final class PageBlobAccessConditions
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static PageBlobAccessConditions |
NONE
An object representing no access conditions.
|
Constructor and Description |
---|
PageBlobAccessConditions(java.lang.Long ifSequenceNumberLessThan,
java.lang.Long ifSequenceNumberLessThanOrEqual,
java.lang.Long ifSequenceNumberEqual)
Creates a set of conditions under which a request to a PageBlob will succeed.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
getIfSequenceNumberEqual() |
java.lang.Long |
getIfSequenceNumberLessThan() |
java.lang.Long |
getIfSequenceNumberLessThanOrEqual() |
public static final PageBlobAccessConditions NONE
public PageBlobAccessConditions(java.lang.Long ifSequenceNumberLessThan, java.lang.Long ifSequenceNumberLessThanOrEqual, java.lang.Long ifSequenceNumberEqual)
ifSequenceNumberLessThan
- Ensures that the page blob operation succeeds only if the blob's sequence number is less than a value.ifSequenceNumberLessThanOrEqual
- Ensures that the page blob operation succeeds only if the blob's sequence number is less than or equal to a
value.ifSequenceNumberEqual
- Ensures that the page blob operation succeeds only if the blob's sequence number is equal to a value.