CosmosDatabaseRequestOptions.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.cosmos.models;
import com.azure.cosmos.implementation.RequestOptions;
/**
* Encapsulates options that can be specified for a request issued to cosmos database.
*/
public final class CosmosDatabaseRequestOptions {
private String ifMatchETag;
private String ifNoneMatchETag;
private ThroughputProperties throughputProperties;
/**
* Gets the If-Match (ETag) associated with the request in the Azure Cosmos DB service.
*
* @return the ifMatchETag associated with the request.
*/
public String getIfMatchETag() {
return this.ifMatchETag;
}
/**
* Sets the If-Match (ETag) associated with the request in the Azure Cosmos DB service.
*
* @param ifMatchETag the ifMatchETag associated with the request.
* @return the current request options
*/
public CosmosDatabaseRequestOptions setIfMatchETag(String ifMatchETag) {
this.ifMatchETag = ifMatchETag;
return this;
}
/**
* Gets the If-None-Match (ETag) associated with the request in the Azure Cosmos DB service.
*
* @return the ifNoneMatchETag associated with the request.
*/
public String getIfNoneMatchETag() {
return this.ifNoneMatchETag;
}
/**
* Sets the If-None-Match (ETag) associated with the request in the Azure Cosmos DB service.
*
* @param ifNoneMatchETag the ifNoneMatchETag associated with the request.
* @return the current request options
*/
public CosmosDatabaseRequestOptions setIfNoneMatchETag(String ifNoneMatchETag) {
this.ifNoneMatchETag = ifNoneMatchETag;
return this;
}
CosmosDatabaseRequestOptions setThroughputProperties(ThroughputProperties throughputProperties) {
this.throughputProperties = throughputProperties;
return this;
}
RequestOptions toRequestOptions() {
RequestOptions options = new RequestOptions();
options.setIfMatchETag(getIfMatchETag());
options.setIfNoneMatchETag(getIfNoneMatchETag());
options.setThroughputProperties(this.throughputProperties);
return options;
}
}