Interface WebAppAuthentication.DefinitionStages.WithDefaultAuthenticationProvider<ParentT>
-
- Type Parameters:
ParentT- the return type of the finalAttachable.attach()
- All Known Subinterfaces:
WebAppAuthentication.Definition<ParentT>,WebAppAuthentication.DefinitionStages.Blank<ParentT>
- Enclosing interface:
- WebAppAuthentication.DefinitionStages
public static interface WebAppAuthentication.DefinitionStages.WithDefaultAuthenticationProvider<ParentT>A web app authentication definition allowing the default authentication provider to be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAppAuthentication.DefinitionStages.WithAttach<ParentT>withAnonymousAuthentication()Does not require login by default.WebAppAuthentication.DefinitionStages.WithAttach<ParentT>withDefaultAuthenticationProvider(BuiltInAuthenticationProvider provider)Specifies the default authentication provider.
-
-
-
Method Detail
-
withAnonymousAuthentication
WebAppAuthentication.DefinitionStages.WithAttach<ParentT> withAnonymousAuthentication()
Does not require login by default.- Returns:
- the next stage of the definition
-
withDefaultAuthenticationProvider
WebAppAuthentication.DefinitionStages.WithAttach<ParentT> withDefaultAuthenticationProvider(BuiltInAuthenticationProvider provider)
Specifies the default authentication provider.- Parameters:
provider- the default authentication provider- Returns:
- the next stage of the definition
-
-