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

validator.playframework.package.scala Maven / Gradle / Ivy

The newest version!
package validator

/**
 * `play.api.mvc.Request` support.
 * GET and POST parameters are subject to this.
  *
 * {{{
 * import validator.playframework.requestSupport
 *
 * def index = Action { req =>
 *   val v1 = int("id") is min(1)
 *   validate(req, v1)
 * }
 * }}}
 */
package object playframework extends RequestSupport {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy