
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_2.9.1.RC4 Show documentation
Show all versions of scalatra-auth_2.9.1.RC4 Show documentation
Scalatra authentication module
The newest version!
package org.scalatra.auth
import javax.servlet.{ServletContextEvent, ServletContextListener}
/**
* This seems like an ideal place to register global strategies
*/
abstract class ScentryInitializer extends ServletContextListener {
def contextDestroyed(e: ServletContextEvent) : Unit = {
Scentry.globalStrategies.clear
}
def contextInitialized(e: ServletContextEvent) : Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy