Class NoopAuthenticator
- java.lang.Object
-
- org.openmetadata.service.security.auth.NoopAuthenticator
-
- All Implemented Interfaces:
AuthenticatorHandler
public class NoopAuthenticator extends Object implements AuthenticatorHandler
-
-
Constructor Summary
Constructors Constructor Description NoopAuthenticator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckIfLoginBlocked(String userName)voidinit(OpenMetadataApplicationConfig config, org.jdbi.v3.core.Jdbi jdbi)JwtResponseloginUser(LoginRequest loginRequest)UserlookUserInProvider(String userName)voidrecordFailedLoginAttempt(String providedIdentity, User user)voidvalidatePassword(String providedIdentity, User storedUser, String reqPassword)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openmetadata.service.security.auth.AuthenticatorHandler
changeUserPwdWithOldPwd, confirmEmailRegistration, createRefreshTokenForLogin, getJwtResponse, getNewAccessToken, registerUser, resendRegistrationToken, resetUserPasswordWithToken, sendEmailVerification, sendInviteMailToUser, sendPasswordResetLink
-
-
-
-
Method Detail
-
init
public void init(OpenMetadataApplicationConfig config, org.jdbi.v3.core.Jdbi jdbi)
- Specified by:
initin interfaceAuthenticatorHandler
-
loginUser
public JwtResponse loginUser(LoginRequest loginRequest)
- Specified by:
loginUserin interfaceAuthenticatorHandler
-
checkIfLoginBlocked
public void checkIfLoginBlocked(String userName)
- Specified by:
checkIfLoginBlockedin interfaceAuthenticatorHandler
-
recordFailedLoginAttempt
public void recordFailedLoginAttempt(String providedIdentity, User user)
- Specified by:
recordFailedLoginAttemptin interfaceAuthenticatorHandler
-
validatePassword
public void validatePassword(String providedIdentity, User storedUser, String reqPassword)
- Specified by:
validatePasswordin interfaceAuthenticatorHandler
-
lookUserInProvider
public User lookUserInProvider(String userName)
- Specified by:
lookUserInProviderin interfaceAuthenticatorHandler
-
-