Uses of Interface
io.milton.http.AuthenticationHandler
Packages that use AuthenticationHandler
-
Uses of AuthenticationHandler in io.milton.config
Fields in io.milton.config with type parameters of type AuthenticationHandlerModifier and TypeFieldDescriptionprotected List<AuthenticationHandler>HttpManagerBuilder.authenticationHandlersprotected List<AuthenticationHandler>HttpManagerBuilder.cookieDelegateHandlersprotected List<AuthenticationHandler>HttpManagerBuilder.extraAuthenticationHandlersMethods in io.milton.config that return types with arguments of type AuthenticationHandlerModifier and TypeMethodDescriptionHttpManagerBuilder.getAuthenticationHandlers()HttpManagerBuilder.getCookieDelegateHandlers()HttpManagerBuilder.getExtraAuthenticationHandlers()You can add some extra auth handlers here, which will be added to the default auth handler structure such as basic, digest and cookie.Method parameters in io.milton.config with type arguments of type AuthenticationHandlerModifier and TypeMethodDescriptionvoidHttpManagerBuilder.setAuthenticationHandlers(List<AuthenticationHandler> authenticationHandlers) voidHttpManagerBuilder.setCookieDelegateHandlers(List<AuthenticationHandler> cookieDelegateHandlers) voidHttpManagerBuilder.setExtraAuthenticationHandlers(List<AuthenticationHandler> extraAuthenticationHandlers) -
Uses of AuthenticationHandler in io.milton.gae
Classes in io.milton.gae that implement AuthenticationHandlerModifier and TypeClassDescriptionclassConvenience subclass of DigestAuthenticationHandler which just creates a AppEngineMemcacheNonceProvider as the default nonce provider. -
Uses of AuthenticationHandler in io.milton.http
Methods in io.milton.http that return types with arguments of type AuthenticationHandlerConstructor parameters in io.milton.http with type arguments of type AuthenticationHandlerModifierConstructorDescriptionAuthenticationService(List<AuthenticationHandler> authenticationHandlers) Creates a AuthenticationService using the given handlers. -
Uses of AuthenticationHandler in io.milton.http.http11.auth
Classes in io.milton.http.http11.auth that implement AuthenticationHandlerModifier and TypeClassDescriptionclassclassThis wraps a bunch of other authentication handlers, so if any of those successfully login the user then this will generate a cookie which can be used subsequently.classclassSupports authentication from form parameters.classclassclassConstructor parameters in io.milton.http.http11.auth with type arguments of type AuthenticationHandlerModifierConstructorDescriptionCookieAuthenticationHandler(NonceProvider nonceProvider, List<AuthenticationHandler> handlers, ResourceFactory principalResourceFactory, List<String> keys) PreAuthenticationFilter(Http11ResponseHandler responseHandler, List<AuthenticationHandler> authenticationHandlers)