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

spice.http.server.validation.ValidationResult.scala Maven / Gradle / Ivy

The newest version!
package spice.http.server.validation

import spice.http.HttpExchange

sealed trait ValidationResult {
  def exchange: HttpExchange
}

object ValidationResult {
  case class Continue(exchange: HttpExchange) extends ValidationResult
  case class Redirect(exchange: HttpExchange, location: String) extends ValidationResult
  case class Error(exchange: HttpExchange, status: Int, message: String) extends ValidationResult
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy