-
- All Implemented Interfaces:
-
io.vertx.ext.auth.authentication.AuthenticationProvider
public interface TockAuthProvider implements AuthenticationProviderBase interface for AuthenticationProvider in Tock framework.
-
-
Method Summary
Modifier and Type Method Description Set<Regex>defaultExcludedPaths(WebVerticle verticle)Set<Regex>excludedPaths(WebVerticle verticle)Paths to exclude from the AuthProvider. abstract AuthenticationHandlerprotectPaths(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()-
-
Method Detail
-
defaultExcludedPaths
Set<Regex> defaultExcludedPaths(WebVerticle verticle)
-
excludedPaths
Set<Regex> excludedPaths(WebVerticle verticle)
Paths to exclude from the AuthProvider.
-
protectPaths
abstract AuthenticationHandler 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()
-
-
-
-