Hi all I´m struggling migrating from Jersey 2.25 to 2.26 since, it has a break change in a internal class of the library AbstractContainerRequestValueFactory
They claim in the issue sections that since the package is internal it should not be used. But they dont offer a solution or workaround.
Any idea how can I replace the use of that class for something else to continue using the provide implementation as I´ve been doing so far?
class MyOwnFactory extends AbstractContainerRequestValueFactory[Future[Object]] {
override def provide: Future[Object] = getContainerRequest.getProperty(Constants.individual).asInstanceOf[Future[Object]]
}