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

com.twitter.finagle.http.service.NotFoundService.scala Maven / Gradle / Ivy

package com.twitter.finagle.http.service

import com.twitter.finagle.Service
import com.twitter.finagle.http.{Status, Request, Response}
import com.twitter.util.Future


/**
 * NotFoundService just returns 404 Not Found.
 */
class NotFoundService[REQUEST <: Request] extends Service[REQUEST, Response] {
  def apply(request: REQUEST): Future[Response] = {
    val response = request.response
    response.status = Status.NotFound
    Future.value(response)
  }
}

object NotFoundService extends NotFoundService[Request]




© 2015 - 2025 Weber Informatics LLC | Privacy Policy