Skip to content

Commit

Permalink
Add isActionPaginated to DelegatingRestHandler (#4763)
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <cwperx@amazon.com>
  • Loading branch information
cwperks authored Oct 1, 2024
1 parent 9c5e32a commit df115d8
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public boolean allowSystemIndexAccessByDefault() {
return delegate.allowSystemIndexAccessByDefault();
}

@Override
public boolean isActionPaginated() {
return delegate.isActionPaginated();
}

@Override
public String toString() {
return delegate.toString();
Expand Down

0 comments on commit df115d8

Please sign in to comment.