Skip to content

Commit

Permalink
fix docs (#218)
Browse files Browse the repository at this point in the history
StubRequestFilterV2 is an interface
  • Loading branch information
lcarilla authored Oct 19, 2023
1 parent cf4bf3b commit c4e5ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _docs/extensibility/filtering-requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This supports a number of use cases including: authentication, URL rewriting and
To intercept stub requests, create a class that extends `StubRequestFilter`. For instance, to perform simple authentication:

```java
public class SimpleAuthRequestFilter extends StubRequestFilterV2 {
public class SimpleAuthRequestFilter implements StubRequestFilterV2 {

@Override
public RequestFilterAction filter(Request request, ServeEvent serveEvent) {
Expand Down

0 comments on commit c4e5ed2

Please sign in to comment.