inline fun <reified T : Any> RestOperations.getForEntity(url: URI): ResponseEntity<T>inline fun <reified T : Any> RestOperations.getForEntity(url: String, uriVariables: Map<String, *>): ResponseEntity<T>
Extension for RestOperations.getForEntity avoiding requiring the type parameter thanks to Kotlin reified type parameters.
Author
Sebastien Deleuze
Since
5.0.2
inline fun <reified T : Any> RestOperations.getForEntity(url: String, vararg uriVariables: Any): ResponseEntity<T>
Extension for RestOperations.getForEntity avoiding requiring the type parameter thanks to Kotlin reified type parameters.
Author
Jon Schneider
Author
Sebastien Deleuze
Since
5.0