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

io.viper.common.Response.scala Maven / Gradle / Ivy

The newest version!
package io.viper.common

import io.viper.core.server.router.{JsonResponse, Utf8Response}
import org.json.{JSONArray, JSONObject}

object Response {
  def apply(str: String) = new Utf8Response(str)
  def apply(json: JSONObject) = new JsonResponse(json)
  def apply(json: JSONArray) = new JsonResponse(json)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy