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

de.innfactory.akka.jwt.AutoValidator.scala Maven / Gradle / Ivy

package de.innfactory.akka.jwt

import com.nimbusds.jwt.JWTClaimsSet

/**
  * This class is just for your test cases. You get automatically validated with the token "auto-validated"
  */
class AutoValidator extends JwtValidator {
  override def validate(jwtToken: JwtToken) =
    Right(
      (JwtToken("auto-validated"),
       JWTClaimsSet.parse("{\"sub\" : \"auto-validated\"}")))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy