Skip to content

Commit

Permalink
Fixed missing filter
Browse files Browse the repository at this point in the history
  • Loading branch information
all4cloud committed Jul 13, 2022
1 parent 5d3268e commit 932d928
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ public ConsumerCountRequest top(int top) {
this.top = Integer.valueOf(top);
return this;
}

public ConsumerCountRequest filter(String filter)
{
this.filter = filter;
return this;
}

public int execute() throws ODataProducerException {
String uri = baseUri;
Expand All @@ -50,5 +56,4 @@ public int execute() throws ODataProducerException {
String valueString = client.requestBody(client.getFormatType(), request);
return Integer.parseInt(valueString);
}

}
}

0 comments on commit 932d928

Please sign in to comment.