
org.scalatra.auth.ScentryInitializer.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-auth-jakarta_3 Show documentation
Show all versions of scalatra-auth-jakarta_3 Show documentation
Scalatra authentication module
The newest version!
package org.scalatra.auth
import org.scalatra.ServletCompat.{ ServletContextEvent, ServletContextListener }
/**
* This seems like an ideal place to register global strategies
*/
abstract class ScentryInitializer extends ServletContextListener {
override def contextDestroyed(e: ServletContextEvent): Unit = {
Scentry.globalStrategies.clear()
}
override def contextInitialized(e: ServletContextEvent): Unit = {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy