AccessCondition Class

  • java.lang.Object
    • com.microsoft.azure.documentdb.AccessCondition

public class AccessCondition

Represents a set of access conditions to be used for operations against the Azure Cosmos DB database service.

Method Summary

Modifier and Type Method and Description
String getCondition()

Gets the value of the condition - for AccessConditionType IfMatchs and IfNotMatch, this is the ETag that has to be compared to.

AccessConditionType getType()

Gets the condition type.

void setCondition(String condition)

Sets the value of the condition - for AccessConditionType IfMatchs and IfNotMatch, this is the ETag that has to be compared to.

void setType(AccessConditionType type)

Sets the condition type.

Method Details

getCondition

public String getCondition()

Gets the value of the condition - for AccessConditionType IfMatchs and IfNotMatch, this is the ETag that has to be compared to.

Returns:

the condition.

getType

public AccessConditionType getType()

Gets the condition type.

Returns:

the condition type.

setCondition

public void setCondition(String condition)

Sets the value of the condition - for AccessConditionType IfMatchs and IfNotMatch, this is the ETag that has to be compared to.

Parameters:

condition - the condition to use.

setType

public void setType(AccessConditionType type)

Sets the condition type.

Parameters:

type - the condition type to use.

Applies to