Uses of Class
com.avoka.fc.core.entity.AuthenticationProvider
-
Packages that use AuthenticationProvider Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.security Provides classes related to security and authentication.com.avoka.fc.core.service Provides the SmartForm Manager service classes. -
-
Uses of AuthenticationProvider in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
AuthenticationProviderDao. getAuthenticationProviderBySequenceNumber(SecurityManager securityManager, int sequenceNumber)
Return the authentication provider for the security manager and sequence number.AuthenticationProvider
AuthenticationProviderDao. getAuthenticationProviderForPK(Object id)
Return the AuthenticationProvider for the given object id.Methods in com.avoka.fc.core.dao that return types with arguments of type AuthenticationProvider Modifier and Type Method Description List<AuthenticationProvider>
AuthenticationProviderDao. getOrderedAuthenticationProvider(SecurityManager securityManager)
Return the authentication ordered set authentication providers for the given security manager. -
Uses of AuthenticationProvider in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
SecurityManager. getAuthProvider(String name)
Return the authentication parameter with the given name -
Uses of AuthenticationProvider in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type AuthenticationProvider Modifier and Type Field Description static org.apache.cayenne.exp.Property<AuthenticationProvider>
_AuthProviderParameter. AUTHENTICATION_PROVIDER
Provides the 'AUTHENTICATION_PROVIDER' property.static org.apache.cayenne.exp.Property<List<AuthenticationProvider>>
_SecurityManager. AUTHENTICATION_PROVIDERS
Provides the 'AUTHENTICATION_PROVIDERS' property.Methods in com.avoka.fc.core.entity.auto that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
_AuthProviderParameter. getAuthenticationProvider()
Return the AuthenticationProvider.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type AuthenticationProvider Modifier and Type Method Description List<AuthenticationProvider>
_SecurityManager. getAuthenticationProviders()
Return the AuthenticationProviders.Methods in com.avoka.fc.core.entity.auto with parameters of type AuthenticationProvider Modifier and Type Method Description void
_SecurityManager. addToAuthenticationProviders(AuthenticationProvider obj)
Add the AuthenticationProviders object.void
_SecurityManager. removeFromAuthenticationProviders(AuthenticationProvider obj)
Remove the AuthenticationProviders object.void
_AuthProviderParameter. setAuthenticationProvider(AuthenticationProvider authenticationProvider)
Set the AuthenticationProvider. -
Uses of AuthenticationProvider in com.avoka.fc.core.security
Methods in com.avoka.fc.core.security with parameters of type AuthenticationProvider Modifier and Type Method Description org.springframework.security.authentication.AuthenticationProvider
ISecurityManagerService. createAuthenticationProvider(AuthenticationProvider providerEntity)
Create an Spring Security AuthenticationProvider instance using the associated Portal and AuthenticationProvider configuration entity.org.springframework.security.authentication.AuthenticationProvider
SecurityManagerService. createAuthenticationProvider(AuthenticationProvider providerEntity)
Create an Spring Security AuthenticationProvider instance using the associated Portal and AuthenticationProvider configuration entity.void
FluentUserAuthenticationProvider. setAuthenticationProvider(AuthenticationProvider authenticationProvider)
Set the Authentication Provider.void
GroovyUserDetailsAuthenticationProvider. setAuthenticationProvider(AuthenticationProvider authenticationProvider)
Set the Authentication Provider.void
IAuthenticationProviderAware. setAuthenticationProvider(AuthenticationProvider authenticationProvider)
Set the Authentication Provider. -
Uses of AuthenticationProvider in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
DatabaseConfigService. createAuthenticationProviderFromTemplate(String newProviderName, String templateName)
Create an AuthenticationProvider with the given name based on the provided template name.
-