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

com.gu.management.Authentication.scala Maven / Gradle / Ivy

The newest version!
package com.gu.management

case class UserCredentials(username: String, password: String)
object UserCredentials {
  val missing = UserCredentials("", "")
}
trait UserProvider {
  def realm: String
  def isValid(credentials: UserCredentials): Boolean
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy