Auth0 Authentication in play microservice

We have scenario where we build one microservice, this microservice is built in Java Play framework (Version 2.12.8) technology.
The issue is Auth0 don’t have SDK provided with Play framework compliant for authentication,
even if we used JAVA SDK for Authentication in play microservice, there need “HttpSerlvetRequest” and “HttpServletResponse” in controller,
In play framework there is no support in controller for servlet, Play supports only “play.mvc.Http.Request”.

How can we convert Play Http.Request to HttpSerlvetRequest?

If we keep callback controller signature like this getCallback(final Http.Request request) , will it work , becasue in play there is no httpResponse(instead it has Result object which return response like httpresponse).