Package com.azure.core.http
Class MatchConditions
- java.lang.Object
-
- com.azure.core.http.MatchConditions
-
- Direct Known Subclasses:
RequestConditions
public class MatchConditions extends Object
Specifies HTTP options for conditional requests.
-
-
Constructor Summary
Constructors Constructor Description MatchConditions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetIfMatch()Gets the ETag that resources must match.StringgetIfNoneMatch()Gets the ETag that resources must not match.MatchConditionssetIfMatch(String ifMatch)Optionally limit requests to resources that match the passed ETag.MatchConditionssetIfNoneMatch(String ifNoneMatch)Optionally limit requests to resources that do not match the passed ETag.
-
-
-
Method Detail
-
getIfMatch
public String getIfMatch()
Gets the ETag that resources must match.- Returns:
- The ETag that resources must match.
-
setIfMatch
public MatchConditions setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.- Parameters:
ifMatch- ETag that resources must match.- Returns:
- The updated MatchConditions object.
-
getIfNoneMatch
public String getIfNoneMatch()
Gets the ETag that resources must not match.- Returns:
- The ETag that resources must not match.
-
setIfNoneMatch
public MatchConditions setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.- Parameters:
ifNoneMatch- ETag that resources must not match.- Returns:
- The updated MatchConditions object.
-
-