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

geotrellis.admin.services.Ping.scala Maven / Gradle / Ivy

The newest version!
package geotrellis.admin.services

import javax.servlet.http.HttpServletRequest
import javax.ws.rs.{GET, Path}
import javax.ws.rs.core.{Response,Context}

@Path("/admin")
class Ping {
  @GET
  def get(@Context req:HttpServletRequest):Response = {
    val message = "pong"
    Response.ok(message)
            .`type`("text/plain")
            .build()
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy