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 Details

    • MatchConditions

      public MatchConditions()
  • Method Details

    • 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.