All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samplest.hello.HeaderResource.kt Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package samplest.hello

import restx.RestxRequest
import restx.annotations.GET
import restx.annotations.Param
import restx.annotations.RestxResource
import restx.factory.Component

/**
 * Created by xhanin on 13/01/2018.
 */
@Component
@RestxResource
class HeaderResource {
    @GET("/headers")
    fun headers(@Param(kind = Param.Kind.CONTEXT) request: RestxRequest): Map = request.headers
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy