This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Description
I have the following api:
@ApiMethod(path = "users", httpMethod = HttpMethod.GET)
public UserResponse getUser(AuthenticatedUser authenticatedUser) {
// code
}
AuthenticatedUser is injected by an authenticator.
When I use Endpoints Framework Maven plugin to generate OpenApi documentation, the plugin does not exclude the injected class (the class is included in the generated docs).