Uses of Interface
org.jivesoftware.openfire.auth.AuthProvider
-
Packages that use AuthProvider Package Description org.jivesoftware.openfire.auth Authentication and Authorization service interfaces and classes.org.jivesoftware.openfire.crowd org.jivesoftware.openfire.ldap LDAP code for authentication and user profile information. -
-
Uses of AuthProvider in org.jivesoftware.openfire.auth
Classes in org.jivesoftware.openfire.auth that implement AuthProvider Modifier and Type Class Description class
DefaultAuthProvider
Default AuthProvider implementation.class
HybridAuthProvider
The hybrid auth provider allows up to three AuthProvider implementations to be strung together to do chained authentication checking.class
JDBCAuthProvider
The JDBC auth provider allows you to authenticate users against any database that you can connect to with JDBC.class
MappedAuthProvider
AAuthProvider
that delegates to a user-specific AuthProvider.class
NativeAuthProvider
Authenticates using the native operating system authentication method.class
POP3AuthProvider
An AuthProvider that authenticates using a POP3 server.Fields in org.jivesoftware.openfire.auth declared as AuthProvider Modifier and Type Field Description protected AuthProvider
AuthorizationBasedAuthProviderMapper. adminProvider
Serves the administrative users.protected AuthProvider
PropertyBasedAuthProviderMapper. fallbackProvider
protected AuthProvider
AuthorizationBasedAuthProviderMapper. userProvider
Serves the regular, non-administrative users.Fields in org.jivesoftware.openfire.auth with type parameters of type AuthProvider Modifier and Type Field Description protected Map<String,AuthProvider>
PropertyBasedAuthProviderMapper. providersByPrefix
Methods in org.jivesoftware.openfire.auth that return AuthProvider Modifier and Type Method Description static AuthProvider
AuthFactory. getAuthProvider()
Deprecated.Prefer using the corresponding factory method, rather than invoking methods on the provider directlyAuthProvider
AuthorizationBasedAuthProviderMapper. getAuthProvider(String username)
AuthProvider
AuthProviderMapper. getAuthProvider(String username)
Finds a suitable AuthProvider for the user.AuthProvider
PropertyBasedAuthProviderMapper. getAuthProvider(String username)
protected static AuthProvider
AuthorizationBasedAuthProviderMapper. instantiateProvider(String propertyName)
protected static AuthProvider
PropertyBasedAuthProviderMapper. instantiateProvider(String propertyName)
Methods in org.jivesoftware.openfire.auth that return types with arguments of type AuthProvider Modifier and Type Method Description Set<AuthProvider>
AuthorizationBasedAuthProviderMapper. getAuthProviders()
Set<AuthProvider>
AuthProviderMapper. getAuthProviders()
Returns all providers that are used by this instance.Set<AuthProvider>
PropertyBasedAuthProviderMapper. getAuthProviders()
Method parameters in org.jivesoftware.openfire.auth with type arguments of type AuthProvider Modifier and Type Method Description static boolean
AuthFactory. isProviderHybridInstanceOf(Class<? extends AuthProvider> clazz)
Indicates if the currently-installed AuthProvider is the HybridAuthProvider supporting a specific class. -
Uses of AuthProvider in org.jivesoftware.openfire.crowd
Classes in org.jivesoftware.openfire.crowd that implement AuthProvider Modifier and Type Class Description class
CrowdAuthProvider
Auth provider for Atlassian Crowd -
Uses of AuthProvider in org.jivesoftware.openfire.ldap
Classes in org.jivesoftware.openfire.ldap that implement AuthProvider Modifier and Type Class Description class
LdapAuthProvider
Implementation of auth provider interface for LDAP authentication service plug-in.
-