-
- All Implemented Interfaces:
-
io.vertx.ext.auth.AuthProvider
public interface TockAuthProvider implements AuthProviderBase interface for AuthProvider in Tock framework.
-
-
Method Summary
Modifier and Type Method Description Set<Regex>excludedPaths(WebVerticle verticle)Paths to exclude from the AuthProvider. abstract AuthHandlerprotectPaths(WebVerticle verticle, Set<String> pathsToProtect, SessionHandler sessionHandler)Protect paths for the specified verticle. TockUsertoTockUser(RoutingContext context)Gets a TockUser from current vert.x state. StringgetSessionCookieName()-
Methods inherited from class io.vertx.ext.auth.AuthProvider
equals, hashCode, toString -
Methods inherited from class ai.tock.shared.security.auth.TockAuthProvider
authenticate -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
excludedPaths
Set<Regex> excludedPaths(WebVerticle verticle)
Paths to exclude from the AuthProvider.
-
protectPaths
abstract AuthHandler protectPaths(WebVerticle verticle, Set<String> pathsToProtect, SessionHandler sessionHandler)
Protect paths for the specified verticle.
-
toTockUser
TockUser toTockUser(RoutingContext context)
Gets a TockUser from current vert.x state.
-
getSessionCookieName
String getSessionCookieName()
-
-
-
-